Artteiv's picture
feat: add menu item and module and migrations
d9eec61
raw
history blame contribute delete
368 Bytes
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service.js';
import { Public } from './modules/authentication/authentication.decorator.js';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Public()
@Get()
getHello(): string {
return this.appService.getHello();
}
}