(self, uri, database_name)
| 9 | class Database: |
| 10 | |
| 11 | def __init__(self, uri, database_name): |
| 12 | self._client = motor.motor_asyncio.AsyncIOMotorClient(uri) |
| 13 | self.db = self._client[database_name] |
| 14 | |
| 15 | async def add_user(self, bot_id, user_id): |
| 16 | user = {'user_id': int(user_id)} |
nothing calls this directly
no outgoing calls
no test coverage detected