10 lines
222 B
Python
10 lines
222 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('main', __name__,
|
|
template_folder='',
|
|
static_folder='static',
|
|
static_url_path='/main/static')
|
|
|
|
from yasi_applets.main import routes
|
|
|