Files
gridpilot.gg/packages/automation/application/ports/SessionValidatorPort.ts
2025-12-04 15:15:24 +01:00

5 lines
150 B
TypeScript

import type { Result } from '../../../shared/result/Result';
export interface SessionValidatorPort {
validateSession(): Promise<Result<boolean>>;
}