Our core mission is to develop and utilize existing technologies to solve challenges arising from today's technology evolution. Currently, we emphasize the web industry.
import { Get, Controller, Render } from '@nestjs/common';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
@Render('index')
render() {
const message = this.appService.getHello();
return { message };
}
}