1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-12 13:42:46 +01:00
spacebarchat/scripts/notion/main.js
Pedrex 7454d60709
Message edited.
Edited "synced ${x} issues" to "Successfuly synced ${x} issues!" (useless, ik)
2021-08-27 18:20:01 +02:00

8 lines
246 B
JavaScript

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