__init__.py 323 B

12345678910
  1. """
  2. Models module entry point. Used to cleanly organize various models
  3. into files based on their purpose, but provide them all via
  4. a single `models` module.
  5. """
  6. from .integration_models import * # noqa
  7. from .page_models import * # noqa
  8. from .snippet_models import * # noqa
  9. from .wagtailsettings_models import * # noqa