soft delete

This commit is contained in:
Peter Maquiran
2024-08-26 14:47:03 +01:00
parent 0f94af5f4e
commit 021d1c5277
31 changed files with 125 additions and 92 deletions
+4
View File
@@ -0,0 +1,4 @@
// Define a generic UseCase interface
export interface UseCase<Input, Output> {
execute(input: Input): Promise<Output>;
}