reorganizde file path

This commit is contained in:
Peter Maquiran
2024-08-27 09:14:59 +01:00
parent 98975856c1
commit e80082f9e8
54 changed files with 236 additions and 454 deletions
+4
View File
@@ -2,3 +2,7 @@
export interface UseCase<Input, Output> {
execute(input: Input): Promise<Output>;
}
export interface UseCaseObservable<Input, Output> {
execute(input: Input): Promise<Output>;
}