Files
Fabric/Fabric.Backend.Guild/src/channels/channels.controller.ts

10 lines
255 B
TypeScript

import { Body, Controller, Post } from '@nestjs/common';
@Controller('channels')
export class ChannelsController {
@Post()
create(@Body() body: Record<string, unknown>) {
return { status: 'todo', action: 'create-channel', received: body };
}
}