1
0
forked from ScoDoc/ScoDoc
ScoDoc-Front/app/auth/__init__.py

10 lines
138 B
Python
Raw Permalink Normal View History

2021-05-29 18:22:51 +02:00
"""auth.__init__
"""
from flask import Blueprint
bp = Blueprint("auth", __name__)
from app.auth import routes
2023-02-26 21:24:07 +01:00
from app.auth import cas