Skip to content

Commit 3ce5ea2

Browse files
committed
Separate directory for storage implementations
1 parent 227f416 commit 3ce5ea2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/powersync_core/lib/attachments/attachments.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ library;
77

88
export '../src/attachments/attachment.dart';
99
export '../src/attachments/attachment_queue_service.dart';
10-
export '../src/attachments/local_storage.dart';
10+
export '../src/attachments/storage/local_storage.dart';
1111
export '../src/attachments/remote_storage.dart';
1212
export '../src/attachments/sync_error_handler.dart';

packages/powersync_core/lib/attachments/io.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// {@category attachments}
77
library;
88

9-
import '../src/attachments/io_local_storage.dart';
10-
import '../src/attachments/local_storage.dart';
9+
import '../src/attachments/storage/io_local_storage.dart';
10+
import '../src/attachments/storage/local_storage.dart';
1111

12-
export '../src/attachments/io_local_storage.dart';
12+
export '../src/attachments/storage/io_local_storage.dart';

packages/powersync_core/lib/src/attachments/attachment_queue_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import 'package:sqlite_async/sqlite_async.dart';
1313

1414
import 'attachment.dart';
1515
import 'implementations/attachment_context.dart';
16-
import 'local_storage.dart';
16+
import 'storage/local_storage.dart';
1717
import 'remote_storage.dart';
1818
import 'sync_error_handler.dart';
1919
import 'implementations/attachment_service.dart';

packages/powersync_core/lib/src/attachments/sync/syncing_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'package:async/async.dart';
77
import '../attachment.dart';
88
import '../implementations/attachment_context.dart';
99
import '../implementations/attachment_service.dart';
10-
import '../local_storage.dart';
10+
import '../storage/local_storage.dart';
1111
import '../remote_storage.dart';
1212
import '../sync_error_handler.dart';
1313

packages/powersync_core/test/attachments/local_storage_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'dart:typed_data';
77

88
import 'package:test/test.dart';
99
import 'package:path/path.dart' as p;
10-
import 'package:powersync_core/src/attachments/io_local_storage.dart';
10+
import 'package:powersync_core/src/attachments/storage/io_local_storage.dart';
1111
import 'package:test_descriptor/test_descriptor.dart' as d;
1212

1313
void main() {

0 commit comments

Comments
 (0)