14 lines
299 B
Python
14 lines
299 B
Python
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)
|