5 lines
85 B
Python
5 lines
85 B
Python
|
from flask import Blueprint
|
||
|
auth = Blueprint('auth', __name__)
|
||
|
from . import routes
|
||
|
|