forked from datawhale/whale-town-end
13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { AppService } from './app.service';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(private readonly appService: AppService) {}
|
|
|
|
@Get()
|
|
getStatus(): string {
|
|
return this.appService.getStatus();
|
|
}
|
|
}
|