12 lines
168 B
Python
12 lines
168 B
Python
|
|
#!/bin/python3
|
||
|
|
|
||
|
|
from flask import Flask, render_template
|
||
|
|
|
||
|
|
app = Flask(__name__)
|
||
|
|
|
||
|
|
@app.route("/")
|
||
|
|
def index():
|
||
|
|
return "TEMPLATE"
|
||
|
|
|
||
|
|
|
||
|
|
app.run(host="0.0.0.0", port=5000)
|