5 lines
84 B
Python
5 lines
84 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
user = Blueprint('user', __name__)
|
||
|
|
||
|
from . import views
|