UNPKG

arvox-backend

Version:

Un framework backend moderne et modulaire basé sur Hono, TypeScript et l'architecture hexagonale avec authentification Better Auth + Drizzle intégrée

9 lines 318 B
export interface IUseCase<TParams = any, TResponse = any> { execute(params: TParams): Promise<TResponse>; log?(): string; logActivity?(userId: string): Promise<void>; run?(params: TParams & { currentUserId?: string; }): Promise<TResponse>; } //# sourceMappingURL=use-case.interface.d.ts.map