Move remote implementation into lib/src/

This commit is contained in:
Simon Binder 2021-09-29 20:31:23 +02:00
parent 24597a3bfd
commit a6917b32ad
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
5 changed files with 7 additions and 7 deletions

View File

@ -56,10 +56,10 @@ import 'package:stream_channel/stream_channel.dart';
import 'moor.dart';
import 'remote.dart' as self;
import 'src/runtime/remote/client_impl.dart';
import 'src/runtime/remote/communication.dart';
import 'src/runtime/remote/protocol.dart';
import 'src/runtime/remote/server_impl.dart';
import 'src/remote/client_impl.dart';
import 'src/remote/communication.dart';
import 'src/remote/protocol.dart';
import 'src/remote/server_impl.dart';
/// Serves a moor database connection over any two-way communication channel.
///

View File

@ -6,7 +6,7 @@ import 'package:moor/src/runtime/executor/stream_queries.dart';
import 'package:moor/src/runtime/types/sql_types.dart';
import 'package:stream_channel/stream_channel.dart';
import '../cancellation_zone.dart';
import '../runtime/cancellation_zone.dart';
import 'communication.dart';
import 'protocol.dart';

View File

@ -3,7 +3,7 @@ import 'dart:async';
import 'package:moor/src/runtime/api/runtime_api.dart';
import 'package:stream_channel/stream_channel.dart';
import '../cancellation_zone.dart';
import '../runtime/cancellation_zone.dart';
import 'protocol.dart';
/// Wrapper around a two-way communication channel to support requests and

View File

@ -4,7 +4,7 @@ import 'package:moor/moor.dart';
import 'package:moor/remote.dart';
import 'package:stream_channel/stream_channel.dart';
import '../cancellation_zone.dart';
import '../runtime/cancellation_zone.dart';
import 'communication.dart';
import 'protocol.dart';