1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-12 13:42:46 +01:00
spacebarchat/scripts/notion/GithubNotionSync.js

13 lines
244 B
JavaScript

const fetch = require("node-fetch")
class GithubNotionSync{
constructor(config, github_org){
this.github_auth = config.github_auth;
this.notion_auth = config.notion_auth;
this.org = github_org
}
async getAllIssues (){
}
}