feat: Create the Medusa API SDK as js-sdk package (#7276)

This commit is contained in:
Stevche Radevski
2024-05-16 12:30:32 +02:00
committed by GitHub
parent e733d6b1ee
commit 845eda4643
13 changed files with 963 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
import { Client } from "../client"
export class Admin {
private client: Client
constructor(client: Client) {
this.client = client
}
}