Initial Nest.js backend

This commit is contained in:
Aleksi Lassila
2024-03-26 00:44:28 +02:00
parent 652894fcc9
commit 8a947d5831
35 changed files with 11307 additions and 1 deletions

13
backend/src/app.module.ts Normal file
View File

@@ -0,0 +1,13 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { DatabaseModule } from './database/database.module';
import { UserModule } from './user/user.module';
import { AuthModule } from './auth/auth.module';
@Module({
imports: [DatabaseModule, UserModule, AuthModule],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}