__init__.py 279 B

12345678910
  1. from .base import PostgresModel
  2. from .partitioned import PostgresPartitionedModel
  3. from .view import PostgresMaterializedViewModel, PostgresViewModel
  4. __all__ = [
  5. "PostgresModel",
  6. "PostgresViewModel",
  7. "PostgresMaterializedViewModel",
  8. "PostgresPartitionedModel",
  9. ]