fix issues in core
This commit is contained in:
5
apps/api/src/shared/presentation/Presenter.ts
Normal file
5
apps/api/src/shared/presentation/Presenter.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface Presenter<Input, ResponseModel> {
|
||||
present(input: Input): void;
|
||||
getResponseModel(): ResponseModel | null;
|
||||
reset(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user