8 lines
283 B
Plaintext
8 lines
283 B
Plaintext
import Medusa from "@medusajs/medusa-js"
|
|
const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
|
|
// must be previously logged in or use api token
|
|
medusa.admin.currencies.list()
|
|
.then(({ currencies, count, offset, limit }) => {
|
|
console.log(currencies.length);
|
|
});
|