from flask import Flask, send_from_directory


class WebHost:
    @staticmethod
    def main_page():
        app = Flask(__name__)

        @app.route('/')
        def index():
            return app.send_static_file('index.html')

        if __name__ == '__main__':
            app.run(debug=True)