Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
domwong
2021-09-20 10:19:39 +00:00
parent 4319f7bf4c
commit 77810789ff
10 changed files with 113 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
import * as qr from "m3o/qr";
//
async function GenerateAqrCode() {
let qrService = new qr.QrService(process.env.MICRO_API_TOKEN);
let rsp = await qrService.generate({
size: 300,
text: "https://m3o.com/qr",
});
console.log(rsp);
}
await GenerateAqrCode();