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

6 lines
114 B
Python

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