mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
Fixed incorrect microservices URLs after updating dockerfiles (#159)
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import { Body, Controller, Post } from '@nestjs/common';
|
||||
import { ObjectDetectionService } from './object-detection.service';
|
||||
import { Logger } from '@nestjs/common';
|
||||
|
||||
@Controller('object-detection')
|
||||
export class ObjectDetectionController {
|
||||
constructor(
|
||||
private readonly objectDetectionService: ObjectDetectionService,
|
||||
) {}
|
||||
) { }
|
||||
|
||||
@Post('/detectObject')
|
||||
async detectObject(@Body('thumbnailPath') thumbnailPath: string) {
|
||||
|
||||
Reference in New Issue
Block a user