http.dart 620 Bytes
Newer Older
1 2 3 4
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
/// A [Future]-based library for making HTTP requests.
6
///
7 8
/// This library is based on Dart's `http` package, but differs in that it is a
/// `mojo`-based HTTP client and does not have a dependency on mirrors.
9 10
///
/// This library depends only on core Dart libraries as well as the `mojo`,
11
/// `mojo_services`, and `sky_services` packages.
12 13 14
library http;

export 'src/http/http.dart';
15
export 'src/http/mojo_client.dart';
16
export 'src/http/response.dart';