Skip to content

Commit

Permalink
Split abstract.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacemanPaul committed Dec 6, 2024
1 parent f538775 commit 2e7bb58
Show file tree
Hide file tree
Showing 16 changed files with 2,674 additions and 2,547 deletions.
2,538 changes: 0 additions & 2,538 deletions datacube/index/abstract.py

This file was deleted.

26 changes: 26 additions & 0 deletions datacube/index/abstract/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This file is part of the Open Data Cube, see https://opendatacube.org for more information
#
# Copyright (c) 2015-2024 ODC Contributors
# SPDX-License-Identifier: Apache-2.0

from ._types import BatchStatus, DSID, DatasetTuple, dsid_to_uuid, DatasetSpatialMixin
from ._users import AbstractUserResource
from ._metadata_types import AbstractMetadataTypeResource, default_metadata_type_docs, _DEFAULT_METADATA_TYPES_PATH
from ._products import AbstractProductResource
from ._lineage import AbstractLineageResource, NoLineageResource
from ._datasets import AbstractDatasetResource
from ._transactions import AbstractTransaction, UnhandledTransaction
from ._index import AbstractIndex, AbstractIndexDriver

__all__ = [
"BatchStatus",
"DSID", "dsid_to_uuid",
"DatasetTuple", "DatasetSpatialMixin",
"default_metadata_type_docs", "_DEFAULT_METADATA_TYPES_PATH",
"AbstractUserResource",
"AbstractMetadataTypeResource", "AbstractProductResource",
"AbstractLineageResource", "NoLineageResource",
"AbstractDatasetResource",
"AbstractTransaction", "UnhandledTransaction",
"AbstractIndex", "AbstractIndexDriver",
]
Loading

0 comments on commit 2e7bb58

Please sign in to comment.