This commit is contained in:
Logan
2026-04-06 00:22:03 -04:00
parent 2f0597c81b
commit 636a847ee1
9 changed files with 133 additions and 21 deletions
+1
View File
@@ -5,6 +5,7 @@ from typing import Optional
class Settings(BaseSettings):
discord_token: str
c2_url: str = "http://localhost:8000"
c2_service_key: Optional[str] = None # must match C2_SERVICE_KEY on c2-core
dev_guild_id: Optional[int] = None # set to sync commands instantly during dev
class Config: