import { Controller, Inject, Get, Provide } from '@midwayjs/decorator';
import { IMidwayContext } from '@midwayjs/core';

@Provide()
@Controller('/')
export class <%=name%> {
  @Inject()
  ctx: IMidwayContext;
  
  @Get('/')
  async home(): Promise<string> {
    return 'Hello Midwayjs!';
  }
}
