mirror of
https://github.com/MrSedan/neuro-reply-bot-reworked.git
synced 2026-01-14 21:49:42 +03:00
9 lines
193 B
Python
9 lines
193 B
Python
from pydantic import BaseModel, Field
|
|
|
|
from ..config import GlobalConfig as Config
|
|
|
|
|
|
class ApiMethod(BaseModel):
|
|
"""Base class for API methods"""
|
|
api_url: str = Field(Config().api_url)
|