7 lines
109 B
Python
7 lines
109 B
Python
from flask import Blueprint
|
|
|
|
|
|
auth = Blueprint('auth', __name__)
|
|
|
|
|
|
from . import views, errors, forms, models |