10 lines
255 B
TypeScript
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 };
|
|
}
|
|
}
|