github.js 209 字节
Newer Older
J
Jason Park 已提交
1 2 3 4 5 6 7 8 9
import GitHub from 'github-api';
import { githubBotAuth, githubOrg, githubRepo } from '/environment';

const gh = new GitHub(githubBotAuth);
const repo = gh.getRepo(githubOrg, githubRepo);

export {
  repo,
};