8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { Octokit } from '@octokit/rest'
|
|
|
|
export function getGHUserClient({ accessToken }: { accessToken: string }) {
|
|
return new Octokit({
|
|
auth: accessToken,
|
|
})
|
|
}
|