nest-project/src/users/users.controller.ts

10 lines
259 B
TypeScript
Raw Normal View History

2023-02-16 01:18:55 +08:00
import { Controller } from '@nestjs/common'
2023-02-15 20:32:14 +08:00
import { UsersService } from './users.service'
2023-02-16 01:18:55 +08:00
import { ApiTags } from '@nestjs/swagger'
2023-02-15 20:32:14 +08:00
2023-02-15 21:26:41 +08:00
@ApiTags('user')
2023-02-15 20:32:14 +08:00
@Controller()
export class UsersController {
constructor(private readonly userService: UsersService) {}
}