Files
spacebarchat/scripts/notion/main.js
T
2021-08-09 22:22:10 +02:00

8 lines
233 B
JavaScript

const config = require("./config.json");
const { GithubNotionSync } = require("./GithubNotionSync");
const sync = new GithubNotionSync(config);
sync.execute()
.then((x) => console.log(`synced ${x} issues`))
.catch(console.error);