MCPcopy Create free account
hub / github.com/altic-dev/Pilot /

Class

src/lib/session-store.ts:20–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18type SessionSubscriber = (session: SessionData) => void;
19
20class SessionStore {
21 private sessions = new Map<string, SessionData>();
22 private subscribers = new Map<string, Set<SessionSubscriber>>();
23 private cleanupInterval: NodeJS.Timeout | null = null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected