home.controller.ts 180 B

123456789
  1. import { Controller, Get } from '@midwayjs/core';
  2. @Controller('/')
  3. export class HomeController {
  4. @Get('/')
  5. async home(): Promise<string> {
  6. return 'Hello Midwayjs!';
  7. }
  8. }