From 2b63ccba96d8651f2ff7d43a5f10f95f2b154268 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 21 Aug 2022 22:12:24 +0100 Subject: 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 --- arthur/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arthur/config.py') 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_" -- cgit v1.2.3