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,12 @@
/* eslint-disable @typescript-eslint/no-extraneous-class */
import { Module } from "@nestjs/common";
import { ManagementController } from "./infrastructure/presentation/rest/management.controller";
import { RepoController } from "./infrastructure/presentation/rest/repo.controller";
import { PersistenceModule } from "./persistance.module";
@Module({
controllers: [ManagementController, RepoController],
imports: [PersistenceModule]
})
export class RestModule {}