mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2024-11-12 13:42:46 +01:00
13 lines
244 B
JavaScript
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 (){
|
|
|
|
}
|
|
}
|