svr-imp/src/app.controller.ts

10 lines
155 B
TypeScript
Raw Normal View History

2017-11-23 21:42:49 +00:00
import { Get, Controller } from '@nestjs/common';
@Controller()
export class AppController {
@Get()
root(): string {
2017-11-23 21:42:49 +00:00
return 'Hello World!';
}
}