Skip to content

Commit

Permalink
move exports
Browse files Browse the repository at this point in the history
  • Loading branch information
gawmanarnar committed Jun 10, 2021
1 parent eb05a1a commit 177b983
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions lib/grpc_or_grpcweb.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export 'src/auth/auth.dart'
show HttpBasedAuthenticator, JwtServiceAccountAuthenticator;

export 'src/client/call.dart' show MetadataProvider, CallOptions;

export 'src/client/common.dart' show Response, ResponseStream, ResponseFuture;

export 'src/shared/profiler.dart' show isTimelineLoggingEnabled;

export 'src/shared/status.dart' show StatusCode, GrpcError;

import 'src/client/grpc_or_grpcweb_channel_grpc.dart'
if (dart.library.html) 'src/client/grpc_or_grpcweb_channel_web.dart';
import 'src/client/http2_channel.dart';
Expand Down Expand Up @@ -81,14 +92,3 @@ class GrpcOrGrpcWebClientChannel extends GrpcOrGrpcWebClientChannelInternal {
ChannelOptions options = const ChannelOptions(),
}) : super.grpc(host, port: port, options: options);
}

export 'src/auth/auth.dart'
show HttpBasedAuthenticator, JwtServiceAccountAuthenticator;

export 'src/client/call.dart' show MetadataProvider, CallOptions;

export 'src/client/common.dart' show Response, ResponseStream, ResponseFuture;

export 'src/shared/profiler.dart' show isTimelineLoggingEnabled;

export 'src/shared/status.dart' show StatusCode, GrpcError;

0 comments on commit 177b983

Please sign in to comment.