File

apps/auth/src/app/app.controller.ts

Index

Methods

Methods

getData
getData()
Decorators :
@Get()
Returns : any
import { Controller, Get } from '@nestjs/common';

import { AppService } from './app.service';

@Controller()
export class AppController {
  constructor(private readonly appService: AppService) {}

  @Get()
  getData() {
    return this.appService.getData();
  }
}

results matching ""

    No results matching ""