This repository has been archived on 2024-10-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ai-virtual-assistant/py/web_flask.py
2024-09-16 13:38:30 +02:00

12 lines
198 B
Python

from flask import Flask, send_from_directory
app = Flask(__name__)
@app.route('/')
def index():
return app.send_static_file('index.html')
if __name__ == '__main__':
app.run(debug=True)