feat(analytics): create new ddd architecture for persisting revenue modifications

This commit is contained in:
Karol Sójko
2022-11-08 15:14:38 +01:00
parent ee7075fe60
commit 0103233d4a
49 changed files with 868 additions and 61 deletions
@@ -0,0 +1,5 @@
import { Result } from '../Core/Result'
export interface DomainUseCaseInterface<T> {
execute(...args: any[]): Promise<Result<T>>
}