from dewacuan import create_app

application = create_app()

if __name__ == "__main__":
    config = application.config["BOT_CONFIG"]
    application.run(
        host=config.app_host,
        port=config.app_port,
        debug=config.app_debug,
    )
