11 lines
226 B
Python
11 lines
226 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('users', __name__,
|
|
template_folder='',
|
|
static_folder='static',
|
|
static_url_path='/users/static')
|
|
|
|
|
|
from yasi_applets.users import routes
|
|
|