0
0
Fork 0
This commit is contained in:
xeltica 2021-08-31 12:37:43 +09:00
parent 2b71549feb
commit 66ced29c6d
28 changed files with 477 additions and 965 deletions

11
src/controllers/meta.ts Normal file
View file

@ -0,0 +1,11 @@
import { Get, JsonController } from "routing-controllers";
@JsonController()
export class MetaController {
@Get('/meta')
get() {
return {
honi: 'ほに',
};
}
}