mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
13 lines
459 B
TypeScript
13 lines
459 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { DeviceInfoService } from './device-info.service';
|
|
import { DeviceInfoController } from './device-info.controller';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { DeviceInfoEntity } from './entities/device-info.entity';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([DeviceInfoEntity])],
|
|
controllers: [DeviceInfoController],
|
|
providers: [DeviceInfoService],
|
|
})
|
|
export class DeviceInfoModule {}
|