mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
* Added reserve geocoding, location in search suggestion, and search by location * Added mapbox sdk to app * Added mapbox to image detailed view
10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
import { Controller, Get, Post, Body, Patch, Param, Delete } from '@nestjs/common';
|
|
import { UserService } from './user.service';
|
|
import { CreateUserDto } from './dto/create-user.dto';
|
|
import { UpdateUserDto } from './dto/update-user.dto';
|
|
|
|
@Controller('user')
|
|
export class UserController {
|
|
constructor(private readonly userService: UserService) {}
|
|
}
|