保存文件
(self, file: UploadFile, save_path: str)
| 30 | class FileStorageInterface: |
| 31 | |
| 32 | async def save_file(self, file: UploadFile, save_path: str): |
| 33 | """ |
| 34 | 保存文件 |
| 35 | """ |
| 36 | raise NotImplementedError |
| 37 | |
| 38 | async def delete_file(self, file_code: FileCodes): |
| 39 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected