feat: init

This commit is contained in:
2023-09-01 16:03:20 +08:00
commit ad6cc0747b
23 changed files with 5729 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Controller, Get } from '@midwayjs/core';
@Controller('/')
export class HomeController {
@Get('/')
async home(): Promise<string> {
return 'Hello Midwayjs!';
}
}