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