LocChat/server/app.controller.ts

9 lines
145 B
TypeScript
Raw Normal View History

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