feat: scaffold center and guild backend NestJS skeletons
This commit is contained in:
9
Fabric.Backend.Guild/src/guilds/guilds.controller.ts
Normal file
9
Fabric.Backend.Guild/src/guilds/guilds.controller.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Body, Controller, Post } from '@nestjs/common';
|
||||
|
||||
@Controller('guilds')
|
||||
export class GuildsController {
|
||||
@Post()
|
||||
create(@Body() body: Record<string, unknown>) {
|
||||
return { status: 'todo', action: 'create-guild', received: body };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user