This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blog/bp/__init__.py
giles 1d4a026f4d
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled
fix: add bp/__init__.py with register function exports
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 00:28:40 +00:00

7 lines
335 B
Python

from .auth.routes import register as register_auth_bp
from .blog.routes import register as register_blog_bp
from .admin.routes import register as register_admin
from .menu_items.routes import register as register_menu_items
from .snippets.routes import register as register_snippets
from .coop_api import register as register_coop_api