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