ethers.js/admin/cmds/cache-github.js

11 lines
270 B
JavaScript
Raw Normal View History

2019-10-19 14:00:39 +03:00
"use strict";
const config = require("../config");
const { syncIssues } = require("../github");
(async function() {
const user = await config.get("github-user");
const password = await config.get("github-readonly");
await syncIssues(user, password);
})();