(self, bot_id, user_id)
| 28 | return self.db[str(bot_id)].find({}) |
| 29 | |
| 30 | async def delete_user(self, bot_id, user_id): |
| 31 | await self.db[str(bot_id)].delete_many({'user_id': int(user_id)}) |
| 32 | |
| 33 | |
| 34 | clonedb = Database(CLONE_DB_URI, CDB_NAME) |
no outgoing calls
no test coverage detected