6 lines
94 B
Python
6 lines
94 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('auth', __name__)
|
|
|
|
from oxyapp.auth import routes
|