Initial commit
This commit is contained in:
3
src/shared/core/IUseCase.ts
Normal file
3
src/shared/core/IUseCase.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface IUseCase<TInput = object, TOutput = void> {
|
||||
execute(inputDto?: TInput): Promise<TOutput>;
|
||||
}
|
||||
Reference in New Issue
Block a user