| 7 | |
| 8 | |
| 9 | class InitChunkUploadModel(BaseModel): |
| 10 | file_name: str |
| 11 | chunk_size: int = 5 * 1024 * 1024 |
| 12 | file_size: int |
| 13 | file_hash: str |
| 14 | |
| 15 | |
| 16 | class CompleteUploadModel(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected