fix: database migration by adding a username

This commit is contained in:
Elias Schneider
2022-12-02 23:00:24 +01:00
parent 6b0b979414
commit e9526fc039
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import { Module } from "@nestjs/common";
import { UserController } from "./user.controller";
@Module({
controllers: [UserController],
})
export class UserModule {}