- Removed deprecated files and components from the BFF application, including various auth and catalog services, enhancing code clarity. - Updated package.json scripts for better organization and streamlined development processes. - Refactored portal components to improve structure and maintainability, including the removal of unused files and components. - Enhanced type definitions and imports across the application for consistency and clarity.
12 lines
299 B
TypeScript
12 lines
299 B
TypeScript
import { Controller } from "@nestjs/common";
|
|
import { CasesService } from "./cases.service";
|
|
import { ApiTags } from "@nestjs/swagger";
|
|
|
|
@ApiTags("cases")
|
|
@Controller("cases")
|
|
export class CasesController {
|
|
constructor(private casesService: CasesService) {}
|
|
|
|
// TODO: Implement case endpoints
|
|
}
|