File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments