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 { StatusService } from './status.service';
@Controller('status')
export class StatusController {}
export class StatusController {
constructor(private statusService: StatusService) {}
}