added first domain model

This commit is contained in:
2022-04-12 19:56:54 +02:00
parent a64e973269
commit 2319347f03
33 changed files with 3566 additions and 302 deletions

View File

@ -0,0 +1,5 @@
import User, { UserId } from "./user.entity";
import {Repository} from "#ddd";
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export default interface UserRepository extends Repository<UserId, User> {}