mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
11 lines
312 B
JavaScript
Executable File
11 lines
312 B
JavaScript
Executable File
const { CurrencyService } = require("m3o/currency");
|
|
|
|
// Codes returns the supported currency codes for the API
|
|
async function getSupportedCodes() {
|
|
let currencyService = new CurrencyService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await currencyService.codes({});
|
|
console.log(rsp);
|
|
}
|
|
|
|
getSupportedCodes();
|