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