9 lines
136 B
Python
9 lines
136 B
Python
from flask import render_template
|
|
|
|
from oshipka.webapp import app
|
|
|
|
|
|
@app.route('/')
|
|
def home():
|
|
return render_template("home.html")
|