This commit is contained in:
2024-12-26 11:00:10 +03:00
commit b91e6e8609
9 changed files with 982 additions and 0 deletions

0
nwxraybot/__init__.py Normal file
View File

6
nwxraybot/config.py Normal file
View File

@@ -0,0 +1,6 @@
from pydantic import Field, SecretStr
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
bot_token: SecretStr = Field(..., env="BOT_TOKEN")