Files
a-dog-a-pet/app/main/routes.py

6 lines
127 B
Python

from flask import render_template
from app.main import bp
@bp.route('/')
def index():
return render_template("index.html")