mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
9 lines
140 B
Python
9 lines
140 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class Config(BaseSettings):
|
|
withdraw_max_size: int = 50
|
|
|
|
class Config:
|
|
extra = 'ignore'
|