6 lines
113 B
Python
6 lines
113 B
Python
from flask import Blueprint
|
|
|
|
|
|
bp = Blueprint("auth", __name__)
|
|
|
|
from . import models, routes # noqa: E402, F401
|