MCPcopy Create free account
hub / github.com/BingyanStudio/github-analyzer / UserSession

Interface UserSession

api/src/services/tokenStorage.ts:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3// User session interface
4export interface UserSession {
5 login: string;
6 accessToken: string;
7 refreshToken?: string;
8 expiresAt?: Date;
9 tokenType?: string;
10 octokit: Octokit;
11}
12
13// In-memory storage (replace with database for production)
14class TokenStorage {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected