UNPKG

dewmyth-auth-nestjs-mongo

Version:

1. Install the package

13 lines (10 loc) 286 B
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(); } }