This commit is contained in:
xXpuma99Xx
2022-04-04 20:53:32 -05:00
parent 3c8dd17089
commit adf1cafc24
40 changed files with 227 additions and 41 deletions
+4 -1
View File
@@ -1,4 +1,7 @@
import { Controller } from '@nestjs/common';
import { MultaService } from './multa.service';
@Controller('multa')
export class MultaController {}
export class MultaController {
constructor(private multaService: MultaService) {}
}