import { MeInfo } from '../../structures/sessions.dto'; export abstract class ISessionMeRepository { abstract upsertMe(sessionName: string, me: MeInfo | null): Promise; abstract getMe(sessionName: string): Promise; abstract removeMe(sessionName: string): Promise; abstract init(): Promise; }