oshipka/bootstrap/webapp/app.py

7 lines
152 B
Python
Raw Normal View History

2020-03-18 12:32:40 +01:00
from flask import render_template, request, jsonify
from oshipka.webapp import app
@app.route('/')
def home():
return render_template("home.html")