nestjs_auth/src/app.controller.ts
2022-09-01 15:56:22 +09:00

13 lines
271 B
TypeScript

import { Controller, Get } from '@nestjs/common'
import { AppService } from './app.service'
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello()
}
}