A simple flask app with web interface
 
 
 
 

5 lines
120 B

from flask import Blueprint
bp = Blueprint('main', __name__, template_folder='templates')
from app.main import routes