mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
13 lines
237 B
JavaScript
Executable File
13 lines
237 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const repl = require('repl').start('> ');
|
|
let GitHubApi = require('github');
|
|
let github = new GitHubApi();
|
|
|
|
github.authenticate({
|
|
type: 'oauth',
|
|
token: process.env.GITHUB_TOKEN
|
|
});
|
|
|
|
repl.context.github = github;
|