A social knowledge tool for researchers built on ATProto
1import { AtpSessionData } from '@atproto/api';
2import { Result } from 'src/shared/core/Result';
3
4export interface IAppPasswordSessionService {
5 getSession(did: string): Promise<Result<AtpSessionData>>;
6 createSession(
7 identifier: string,
8 appPassword: string,
9 ): Promise<Result<AtpSessionData>>;
10}