diff options
author | 2023-03-12 20:11:02 +0100 | |
---|---|---|
committer | 2023-03-12 20:11:02 +0100 | |
commit | 81ae7f0a68f8a3c55c1f113d7a0474eaaf919a65 (patch) | |
tree | 6e837707cab523397f423c8f5a0d02832a342217 | |
parent | Merge pull request #2463 from shtlrs/preserve-personal-config (diff) |
add constants needed
-rw-r--r-- | botstrap.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/botstrap.py b/botstrap.py index 90a954d9b..98ecceabb 100644 --- a/botstrap.py +++ b/botstrap.py @@ -15,6 +15,10 @@ env_file_path = Path(".env.server") BOT_TOKEN = os.getenv("BOT_TOKEN", None) GUILD_ID = os.getenv("GUILD_ID", None) +COMMUNITY_FEATURE = "COMMUNITY" +PYTHON_HELP_NAME = _Channels.__fields__["python_help"].name +GUILD_FORUM_TYPE = 15 + if not BOT_TOKEN: message = ( |