5 lines
144 B
Python
5 lines
144 B
Python
from flask import Blueprint
|
|
|
|
auth_bp = Blueprint('auth', __name__)
|
|
other_bp = Blueprint('other', __name__)
|
|
user_bp = Blueprint('user', __name__) |