Spaces:
Runtime error
Runtime error
| import { Controller, Get } from '@nestjs/common'; | |
| import { NorthwindapiService } from './northwindapi.service'; | |
| (['/', '/healthz']) | |
| export class NorthwindapiController { | |
| constructor(private readonly northwindapiService: NorthwindapiService) {} | |
| () | |
| healthz(): string { | |
| return this.northwindapiService.healthz(); | |
| } | |
| } | |