aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/config.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-08-21 22:12:24 +0100
committerGravatar Chris Lovering <[email protected]>2022-08-21 22:27:59 +0100
commit2b63ccba96d8651f2ff7d43a5f10f95f2b154268 (patch)
tree099fdeab7d8bd4c188f186cac13bd2ea70fb3563 /arthur/config.py
parentBump Dockerfile and CI to Python 3.10 (diff)
Use BotBase from bot-core
This includes: - Moving to an async main function to start the bot - Moving all extension loading (barring jishaku) to bot core - Adding dunder init files to all packages, required by bot-core ext loaders
Diffstat (limited to 'arthur/config.py')
-rw-r--r--arthur/config.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/arthur/config.py b/arthur/config.py
index a17980f..1fcf11d 100644
--- a/arthur/config.py
+++ b/arthur/config.py
@@ -17,6 +17,9 @@ class Config(BaseSettings):
# Token for authorising with the Cloudflare API
cloudflare_token: str
+ # Guild id
+ guild_id: int = 267624335836053506
+
class Config: # noqa: D106
env_file = ".env"
env_prefix = "KING_ARTHUR_"