15 lines
214 B
Python
15 lines
214 B
Python
"""The Magic App."""
|
|
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return render_template("index.html")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0")
|