mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
||
|
|
import { databaseConfig } from './config/database.config';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [TypeOrmModule.forRoot(databaseConfig)],
|
||
|
|
providers: [],
|
||
|
|
exports: [TypeOrmModule],
|
||
|
|
})
|
||
|
|
export class DatabaseModule {}
|