website/hub/services/admin/__init__.py
Tobias Brunner 52dbe89582
image library
created using VS Codey Copilot Agent with Claude Sonnet 4
2025-07-04 16:28:13 +02:00

11 lines
275 B
Python

# Admin module initialization
# Import all admin classes to register them with Django admin
from .articles import *
from .base import *
from .content import *
from .images import *
from .leads import *
from .pricing import *
from .providers import *
from .services import *