LocChat/server/app.controller.ts
2021-11-16 19:14:46 -07:00

9 lines
145 B
TypeScript

import { Controller, Get, Render } from '@nestjs/common';
@Controller()
export class AppController {
@Get()
@Render('index')
index() {}
}