Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
Extract blog-specific code from the coop monolith into a standalone repository. Includes auth, blog, post, admin, menu_items, snippets blueprints, associated templates, Dockerfile (APP_MODULE=app:app), entrypoint, and Gitea CI workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
254 B
Python
8 lines
254 B
Python
from __future__ import annotations
|
|
|
|
# create the blueprint at package import time
|
|
from .routes import register # = Blueprint("browse_bp", __name__)
|
|
|
|
# import routes AFTER browse_bp is defined so routes can attach to it
|
|
from . import routes # noqa: F401
|