mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
New configuration system, this time for real
This commit is contained in:
parent
c6e34f6ae1
commit
60f10fa72e
2 changed files with 19 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -92,9 +92,6 @@ ENV/
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
# config file
|
|
||||||
royalbotconfig.py
|
|
||||||
|
|
||||||
# grandbot.py files
|
# grandbot.py files
|
||||||
diario.txt
|
diario.txt
|
||||||
|
|
||||||
|
|
19
royalbotconfig.py
Normal file
19
royalbotconfig.py
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
class MissingTokenError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
if "telegram_token" in os.environ:
|
||||||
|
telegram_token = os.environ["telegram_token"]
|
||||||
|
else:
|
||||||
|
raise MissingTokenError("telegram_token")
|
||||||
|
|
||||||
|
if "discord_token" in os.environ:
|
||||||
|
discord_token = os.environ["discord_token"]
|
||||||
|
else:
|
||||||
|
raise MissingTokenError("discord_token")
|
||||||
|
|
||||||
|
if "discord_webhook" in os.environ:
|
||||||
|
discord_webhook = os.environ["discord_webhook"]
|
||||||
|
else:
|
||||||
|
raise MissingTokenError("discord_webhook")
|
Loading…
Reference in a new issue