10 lines
No EOL
199 B
Python
10 lines
No EOL
199 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def home():
|
|
return render_template('index.xht')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host="0.0.0.0", port=8080) |