| 66 | |
| 67 | |
| 68 | class CarBase(MongoBaseModel): |
| 69 | |
| 70 | brand: str = Field(..., min_length=3) |
| 71 | make: str = Field(..., min_length=1) |
| 72 | year: int = Field(..., gt=1975, lt=2023) |
| 73 | price: int = Field(...) |
| 74 | km: int = Field(...) |
| 75 | cm3: int = Field(..., gt=600, lt=8000) |
| 76 | picture: Optional[str] = None |
| 77 | |
| 78 | |
| 79 | class CarDB(CarBase): |
nothing calls this directly
no outgoing calls
no test coverage detected