forked from ScoDoc/ScoDoc
10 lines
138 B
Python
10 lines
138 B
Python
"""auth.__init__
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
bp = Blueprint("auth", __name__)
|
|
|
|
from app.auth import routes
|
|
from app.auth import cas
|