diff options
author | latex <latex@disroot.org> | 2023-03-31 02:05:25 +0200 |
---|---|---|
committer | latex <latex@disroot.org> | 2023-03-31 02:05:25 +0200 |
commit | 472b5b0e46dcadbc769b8b415aa6807297467e59 (patch) | |
tree | 37e5c0967ac7811867837ff6ffb829452b651184 /src/main.py | |
parent | 9ed06f53fd8db5bf920a315f480e923eb2c6620f (diff) | |
download | mumblecord-472b5b0e46dcadbc769b8b415aa6807297467e59.tar.gz |
add commands: guilds, vc, activevc
Diffstat (limited to 'src/main.py')
-rw-r--r-- | src/main.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.py b/src/main.py index 69f6a57..99ec97d 100644 --- a/src/main.py +++ b/src/main.py @@ -2,6 +2,7 @@ import asyncio import argparse import configparser import mumblecord +import commands parser = argparse.ArgumentParser( prog="mumblecord", @@ -17,6 +18,7 @@ conf_mumble = conf["mumble"] conf_discord = conf["discord"] bot = mumblecord.Mumblecord(conf_mumble, conf_discord) +commands.register_all_commands(bot) + +asyncio.run(bot.run()) -while True: - pass |