mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-14 03:54:47 +00:00
Change build setup of JS clients, reintroduce beta publishing after losing it due to unmerged code (#238)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import * as sunnah from "m3o/sunnah";
|
||||
const { SunnahService } = require("m3o/sunnah");
|
||||
|
||||
// Get a list of available collections. A collection is
|
||||
// a compilation of hadiths collected and written by an author.
|
||||
async function ListAvailableCollections() {
|
||||
let sunnahService = new sunnah.SunnahService(process.env.MICRO_API_TOKEN);
|
||||
async function listAvailableCollections() {
|
||||
let sunnahService = new SunnahService(process.env.MICRO_API_TOKEN);
|
||||
let rsp = await sunnahService.collections({});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
await ListAvailableCollections();
|
||||
listAvailableCollections();
|
||||
|
||||
Reference in New Issue
Block a user