MCPcopy Index your code
hub / github.com/BingyanStudio/github-analyzer / UserSession

Interface UserSession

api/src/services/auth.ts:8–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7// User session interface
8export interface UserSession {
9 login: string;
10 accessToken: string;
11 refreshToken?: string;
12 expiresAt?: Date | null;
13 tokenType?: string;
14 createdAt: Date;
15}
16
17export async function handleGithubAuth(req: BunRequest) {
18 console.log("Handling GitHub authentication...");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected