diff --git a/main.py b/main.py deleted file mode 100644 index 8e0d856..0000000 --- a/main.py +++ /dev/null @@ -1,10 +0,0 @@ -from irc_bot import bot -from web_app import appV3 -from config import FLASK_PORT - -# Do the damn deal -if __name__ == "__main__": - print("[MAIN] Starting IRC bot and web app locally...") - bot.connect() - bot.start() - appV3.run(host="0.0.0.0", port=FLASK_PORT)