LocChat/server/app.controller.ts

9 lines
145 B
TypeScript
Raw Normal View History

2021-11-16 21:14:46 -05:00
import { Controller, Get, Render } from '@nestjs/common';
@Controller()
export class AppController {
@Get()
@Render('index')
index() {}
}