feat(freight:api): initial backend work

This commit is contained in:
Michael Abebe
2026-05-18 10:25:33 +03:00
parent f0b309b65c
commit 0e0d2ea450
13 changed files with 177 additions and 16 deletions

View File

@@ -14,7 +14,6 @@ import { CreateConsignmentDto } from "./dto/create-consignment.dto";
import { FilterConsignmentDto } from "./dto/filter-consignment.dto";
@ApiTags("consignments")
// @UseGuards(JwtAuthGuard) — TODO: integrate @edr/auth
@Controller("consignments")
export class ConsignmentsController {
constructor(private readonly consignmentsService: ConsignmentsService) {}