1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-22 18:32:36 +01:00
spacebarchat/scripts/notion/main.js

8 lines
246 B
JavaScript
Raw Normal View History

2021-08-09 22:22:10 +02:00
const config = require("./config.json");
const { GithubNotionSync } = require("./GithubNotionSync");
2021-08-09 22:22:10 +02:00
const sync = new GithubNotionSync(config);
2021-08-09 22:22:10 +02:00
sync.execute()
.then((x) => console.log(`Successfuly synced ${x} issues!`))
2021-08-09 22:22:10 +02:00
.catch(console.error);