This commit is contained in:
2024-03-17 13:09:50 +04:00
parent 62922cf613
commit a498a04481
2 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
TOKEN=
ADMIN_ID=
token=
admin_id=

View File

@ -9,8 +9,8 @@ load_dotenv()
@dataclass
class Secrets:
token: str = os.environ.get("TOKEN")
admin_id: int = os.environ.get("ADMIN_ID")
token: str = os.environ.get("token")
admin_id: int = os.environ.get("admin_id")
bot = Bot(token=Secrets.token)