ethers.js/misc/admin/src.ts/cmds/cache-github.ts
2020-12-08 01:38:32 -05:00

9 lines
249 B
TypeScript

import { config } from "../config";
import { syncIssues } from "../github";
(async function() {
const user = await config.get("github-user");
const password = await config.get("github-readonly");
await syncIssues(user, password);
})();