mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 17:23:16 +03:00
10 lines
320 B
TypeScript
10 lines
320 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { ObjectDetectionService } from './object-detection.service';
|
||
|
|
import { ObjectDetectionController } from './object-detection.controller';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
controllers: [ObjectDetectionController],
|
||
|
|
providers: [ObjectDetectionService],
|
||
|
|
})
|
||
|
|
export class ObjectDetectionModule {}
|