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