Files
twenty/server/src/app.controller.ts
T
2023-04-24 14:53:48 +02:00

8 lines
198 B
TypeScript

import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
}