Fix imports (#161)

This commit is contained in:
Sigurd Meldgaard 2019-03-25 10:00:33 +01:00 committed by GitHub
parent 2b7e261f3a
commit 61c741d173
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 5 deletions

View File

@ -15,8 +15,8 @@
import 'dart:async';
import '../shared/status.dart';
import '../shared/message.dart';
import '../shared/status.dart';
import 'common.dart';
import 'connection.dart';

View File

@ -13,12 +13,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:async';
import 'package:meta/meta.dart';
import 'channel.dart' as channel;
import 'options.dart';
import 'transport/transport.dart';
import 'transport/http2_transport.dart';
import 'transport/transport.dart';
@visibleForTesting
Future<Transport> connectTransport(

View File

@ -14,10 +14,10 @@
// limitations under the License.
import 'dart:async';
import 'package:meta/meta.dart';
import 'dart:math';
import 'package:meta/meta.dart';
const defaultIdleTimeout = const Duration(minutes: 5);
typedef Duration BackoffStrategy(Duration lastBackoff);

View File

@ -13,6 +13,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:async';
import 'package:grpc/src/client/options.dart';
import 'package:grpc/src/client/transport/transport.dart';
import 'package:grpc/src/client/transport/xhr_transport.dart';

View File

@ -1,3 +1,18 @@
// Copyright (c) 2019, the gRPC project authors. Please see the AUTHORS file
// for details. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:async';
import 'dart:typed_data';

View File

@ -13,7 +13,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:async';
import 'dart:convert';
import 'dart:math';
import 'dart:typed_data';