💩 First iteration

This commit is contained in:
Boger 2020-03-18 17:04:11 +03:00
parent 0bd7fc2c7e
commit fac69e52b7
25 changed files with 427 additions and 273 deletions

View file

@ -101,12 +101,12 @@ from ..types import (
from .base import BaseBot
class Bot(BaseBot):
class Bot(BaseBot["Bot"]):
"""
Class where located all API methods
"""
@alru_cache()
@alru_cache() # type: ignore
async def me(self) -> User:
return await self.get_me()