Files
MultiTenantSaaS/src/app.controller.ts
2026-02-21 17:21:48 +05:45

15 lines
334 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
import { Public } from './auth/decorators';
@Controller('')
@Public(true)
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
}