7 lines
152 B
Python
7 lines
152 B
Python
|
from flask import render_template, request, jsonify
|
||
|
|
||
|
from oshipka.webapp import app
|
||
|
|
||
|
@app.route('/')
|
||
|
def home():
|
||
|
return render_template("home.html")
|