2020-03-23 14:59:11 +01:00
|
|
|
from flask import render_template
|
2020-03-18 12:32:40 +01:00
|
|
|
|
2020-06-05 12:38:25 +02:00
|
|
|
from webapp.routes import *
|
2020-03-18 12:32:40 +01:00
|
|
|
from oshipka.webapp import app
|
|
|
|
|
2020-03-23 14:59:11 +01:00
|
|
|
|
2020-03-18 12:32:40 +01:00
|
|
|
@app.route('/')
|
|
|
|
def home():
|
2020-03-23 14:59:11 +01:00
|
|
|
return render_template("home.html")
|