6 lines
181 B
TypeScript
6 lines
181 B
TypeScript
import { Controller, Post } from '@nestjs/common';
|
|
import { ParticipanteService } from './participante.service';
|
|
|
|
@Controller('participante')
|
|
export class ParticipanteController {}
|