mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
13 lines
265 B
JavaScript
Executable File
13 lines
265 B
JavaScript
Executable File
import * as holidays from "m3o/holidays";
|
|
|
|
//
|
|
async function ListCountries() {
|
|
let holidaysService = new holidays.HolidaysService(
|
|
process.env.MICRO_API_TOKEN
|
|
);
|
|
let rsp = await holidaysService.countries({});
|
|
console.log(rsp);
|
|
}
|
|
|
|
await ListCountries();
|