(self, file_id)
| 32 | return await self.files.insert_one(file) |
| 33 | |
| 34 | async def is_file_exit(self, file_id): |
| 35 | f = await self.files.find_one({"file_id": file_id}) |
| 36 | return bool(f) |
| 37 | |
| 38 | async def get_all_files(self): |
| 39 | return self.files.find({}) |
nothing calls this directly
no outgoing calls
no test coverage detected