This commit is contained in:
MadCat9958 2023-07-03 19:58:25 +03:00
parent f6f3990d04
commit 737b77a99b

View file

@ -22,7 +22,7 @@ class HttpClient:
def __init__(self, auth_token: str = None, version: int = 3, **kwargs): def __init__(self, auth_token: str = None, version: int = 3, **kwargs):
self.token = auth_token self.token = auth_token
self.API_URL = f"https://api.boticord.top/v{version}" self.API_URL = f"https://api.boticord.top/v{version}/"
loop = kwargs.get("loop") or asyncio.get_event_loop() loop = kwargs.get("loop") or asyncio.get_event_loop()