Skip to content
Permalink
9a08fb451a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (10 sloc) 252 Bytes
# pylint: disable=C0103
""" Discord stuff. """
from wrappers import DiscordBot
from config import global_config
def main():
""" Run Discord bot. """
b = DiscordBot(global_config.discord)
b.start()
if __name__ == "__main__":
main()