mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2024-11-12 13:42:46 +01:00
7454d60709
Edited "synced ${x} issues" to "Successfuly synced ${x} issues!" (useless, ik)
8 lines
246 B
JavaScript
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);
|