Skip to content

Commit

Permalink
Fix resource init
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason committed Jul 6, 2023
1 parent 530209c commit 2d72260
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/maggma/api/resource/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# isort: off
from maggma.api.resource.core import Resource
from maggma.api.resource.core import HintScheme
from maggma.api.resource.core import HeaderProcessor

# isort: on

from maggma.api.resource.aggregation import AggregationResource
from maggma.api.resource.post_resource import PostOnlyResource
from maggma.api.resource.read_resource import ReadOnlyResource, attach_query_ops
from maggma.api.resource.submission import SubmissionResource
from maggma.api.resource.s3_url import S3URLResource

__all__ = [
"Resource",
"HintScheme",
"HeaderProcessor",
"AggregationResource",
"PostOnlyResource",
"ReadOnlyResource",
"attach_query_ops",
"SubmissionResource",
"S3URLResource",
]

0 comments on commit 2d72260

Please sign in to comment.