flask_template_codex/app/auth/__init__.py
2026-08-08 02:53:18 +02:00

6 lines
113 B
Python

from flask import Blueprint
bp = Blueprint("auth", __name__)
from . import models, routes # noqa: E402, F401