mirror of
https://github.com/zen-browser/rices.git
synced 2025-07-07 17:05:40 +02:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { AppService } from './app.service';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
constructor(private readonly appService: AppService) {}
|
|
}
|