vvvw/hello.py
2020-11-10 13:45:35 +01:00

12 lines
174 B
Python

from flask import Flask
from flask import render_template, jsonify
app = Flask(__name__)
@app.route('/')
def hello_world():
return render_template('hello.html')