This commit is contained in:
AF 2023-10-02 16:57:53 +00:00
parent f5a694115a
commit aa3cd45a3b
2 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,3 @@
__all__ = ('config',)
__all__ = ("config",)
import v6d3losyash.config as config

View File

@ -2,13 +2,13 @@ import os
from v6d0auth.config import root
__all__ = ('guild', 'emoji', 'role', 'message', 'channel', 'role_channel', 'myroot')
__all__ = ("guild", "emoji", "role", "message", "channel", "role_channel", "myroot")
guild = int(os.getenv('v6guild', 541241763042689025))
emoji = int(os.getenv('v6emoji', 586669134406877270))
role = int(os.getenv('v6role', 643896112977018880))
message = int(os.getenv('v6message', 825385619097518110))
channel = int(os.getenv('v6channel', 876814972968116224))
role_channel = int(os.getenv('v6channel', 964261739980025966))
myroot = root / 'v6d3losyash'
guild = int(os.getenv("v6guild", 541241763042689025))
emoji = int(os.getenv("v6emoji", 586669134406877270))
role = int(os.getenv("v6role", 643896112977018880))
message = int(os.getenv("v6message", 825385619097518110))
channel = int(os.getenv("v6channel", 876814972968116224))
role_channel = int(os.getenv("v6channel", 964261739980025966))
myroot = root / "v6d3losyash"
myroot.mkdir(exist_ok=True)