Spaces:
Sleeping
Sleeping
import { Controller, Get } from '@nestjs/common'; | |
import { AppService } from './app.service.js'; | |
import { Public } from './modules/authentication/authentication.decorator.js'; | |
() | |
export class AppController { | |
constructor(private readonly appService: AppService) {} | |
() | |
() | |
getHello(): string { | |
return this.appService.getHello(); | |
} | |
} | |