Files
docmost/server/src/app.controller.ts
T
Philipinho 8c84bf822e init
2023-08-03 17:04:35 +01:00

13 lines
274 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();
}
}