mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
Fixed incorrect microservices URLs after updating dockerfiles (#159)
This commit is contained in:
parent
bb89fa4aab
commit
c5adbea6e1
4 changed files with 21 additions and 15 deletions
|
|
@ -5,7 +5,7 @@ import { ImageClassifierService } from './image-classifier.service';
|
|||
export class ImageClassifierController {
|
||||
constructor(
|
||||
private readonly imageClassifierService: ImageClassifierService,
|
||||
) {}
|
||||
) { }
|
||||
|
||||
@Post('/tagImage')
|
||||
async tagImage(@Body('thumbnailPath') thumbnailPath: string) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue