mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2026-04-28 01:55:11 +00:00
8 lines
233 B
JavaScript
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);
|