import { IAccount, ISession, ISessionService, } from "@apihub24/token-authentication"; export class SessionServiceMock implements ISessionService { create(account: IAccount): Promise { throw new Error("Method not implemented."); } getBy(filter: (account: IAccount) => boolean): Promise { throw new Error("Method not implemented."); } getById(sessionId: string): Promise { throw new Error("Method not implemented."); } remove(sessionId: string): Promise { throw new Error("Method not implemented."); } }