(self, file: UploadFile, save_path: str)
| 631 | self.root_path.get_by_path(path).upload(name, content).execute_query() |
| 632 | |
| 633 | async def save_file(self, file: UploadFile, save_path: str): |
| 634 | await asyncio.to_thread(self._save, file, save_path) |
| 635 | |
| 636 | def _delete(self, save_path): |
| 637 | path = self._get_path_str(save_path) |
nothing calls this directly
no outgoing calls
no test coverage detected