ScoDoc-Lille/app/auth/__init__.py

9 lines
113 B
Python
Raw 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