forked from orbit-oss/flask
8 lines
163 B
Python
8 lines
163 B
Python
from flask import Blueprint, render_template
|
|
|
|
frontend = Blueprint(__name__)
|
|
|
|
|
|
@frontend.route('/')
|
|
def index():
|
|
return render_template('frontend/index.html')
|