website/hub/services/admin/__init__.py

11 lines
253 B
Python
Raw Normal View History

2025-05-26 11:33:04 +02:00
# Admin module initialization
# Import all admin classes to register them with Django admin
2025-06-06 14:53:49 +02:00
from .articles import *
2025-05-26 11:33:04 +02:00
from .base import *
from .content import *
from .leads import *
from .pricing import *
from .providers import *
from .services import *