Files
gridpilot.gg/core/shared/application/AsyncUseCase.ts
2025-12-15 13:46:07 +01:00

3 lines
90 B
TypeScript

export interface AsyncUseCase<Input, Output> {
execute(input: Input): Promise<Output>;
}