mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-06-15 13:09:59 +00:00
8 lines
207 B
Python
8 lines
207 B
Python
# app/auth/__init__.py
|
|
from flask import Blueprint
|
|
|
|
# Define the auth blueprint
|
|
bp = Blueprint('auth', __name__, template_folder='templates')
|
|
|
|
# Import routes at the bottom
|
|
from app.auth import routes |