Skip to content

Commit d7e0a99

Browse files
Revert "ref(dx): Remove filestore shims (#97714)"
This reverts commit 56e19c9. Co-authored-by: evanpurkhiser <[email protected]>
1 parent be9009a commit d7e0a99

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

src/sentry/filestore/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
Backward compatibility shim for getsentry.
3+
4+
This module re-exports everything from the new sentry.services.filestore location
5+
to maintain compatibility with existing getsentry imports.
6+
"""
7+
8+
# Re-export everything from the new location
9+
from sentry.services.filestore import * # noqa: F401, F403

src/sentry/filestore/gcs.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
Backward compatibility shim for getsentry.
3+
4+
This module re-exports everything from the new sentry.services.filestore.gcs location
5+
to maintain compatibility with existing getsentry imports.
6+
"""
7+
8+
# Re-export everything from the new location
9+
from sentry.services.filestore.gcs import * # noqa: F401, F403

src/sentry/filestore/s3.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
Backward compatibility shim for getsentry.
3+
4+
This module re-exports everything from the new sentry.services.filestore.s3 location
5+
to maintain compatibility with existing getsentry imports.
6+
"""
7+
8+
# Re-export everything from the new location
9+
from sentry.services.filestore.s3 import * # noqa: F401, F403

0 commit comments

Comments
 (0)