from .client import ApiClient class DecibelClient: http_client: ApiClient def __init__(self, client: ApiClient) -> None: self.http_client = client async def create_or_update_user(self, atlas_user_id): endpoint = "/atlas/user" params = { "id": atlas_user_id } await self.http_client.post(endpoint, params=params) async def delete_user(self, atlas_user_id): endpoint = "/atlas/user" params = { "id": atlas_user_id } await self.http_client.delete(endpoint, params=params)