mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
16 lines
469 B
TypeScript
16 lines
469 B
TypeScript
|
|
import { Module } from "@nestjs/common";
|
||
|
|
import { ConfigModule } from "@nestjs/config";
|
||
|
|
import { AuthenticationModule } from "./authentication/authentication.module";
|
||
|
|
import { DatabaseModule } from "./database/database.module";
|
||
|
|
import { ConnectionsModule } from "./connections/connections.module";
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [
|
||
|
|
ConfigModule.forRoot({ isGlobal: true }),
|
||
|
|
DatabaseModule,
|
||
|
|
AuthenticationModule,
|
||
|
|
ConnectionsModule
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export class AppModule {}
|