12 lines
166 B
Python
12 lines
166 B
Python
|
from flask import Flask
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
|
||
|
@app.route('/')
|
||
|
def index():
|
||
|
return app.send_static_file('index.html')
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run()
|