mirror of
https://github.com/MrSedan/neuro-reply-bot-reworked.git
synced 2026-01-14 21:49:42 +03:00
9 lines
137 B
Python
9 lines
137 B
Python
from ..config import Config
|
|
|
|
|
|
class ApiMethod:
|
|
api_url: str
|
|
|
|
def __init__(self) -> None:
|
|
self.api_url = Config().api_url
|