This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as Octokit from '@octokit/rest' | |
| const client = new Octokit() | |
| export default class GithubClient { | |
| public static async authenticate({username, password, twoFactorCode}: any) { | |
| client.authenticate({ | |
| type: 'basic', | |
| username: username, |
OlderNewer