15 lines
351 B
Python
15 lines
351 B
Python
|
from redbot.core import Config
|
||
|
|
||
|
config: Config = Config.get_conf(None, identifier=69737245070283, cog_name="TTS")
|
||
|
|
||
|
|
||
|
def register_config(config_obj: Config):
|
||
|
config_obj.register_global(
|
||
|
use_google_tts = False,
|
||
|
)
|
||
|
config_obj.register_guild(
|
||
|
enabled_channels = [],
|
||
|
announce = False,
|
||
|
voice_channels = True
|
||
|
)
|