Initalize repo

This commit is contained in:
BaerbelBox
2022-03-31 15:21:47 +02:00
parent 557f3e9b31
commit 7cf65ef092
98 changed files with 15860 additions and 0 deletions

17
Main.py Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/python
"""
mainfile, initializes everything
"""
# function declarations
from argparse import ArgumentParser
from FaustBot.FaustBot import FaustBot
if __name__ == "__main__":
arg_parser = ArgumentParser(description="FautBot - ")
arg_parser.add_argument('--config', required=True, type=str, help="Path to the configuration file")
args = arg_parser.parse_args()
bot = FaustBot(args.config)
bot.run()