mirror of
https://github.com/n08i40k/schedule-parser-next.git
synced 2025-12-06 17:57:45 +03:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
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();
|
|
}
|
|
}
|