8 lines
264 B
Dart
8 lines
264 B
Dart
/// A PSR-18 compatible HTTP client interface for Dart.
|
|
///
|
|
/// This library provides interfaces for HTTP clients following
|
|
/// the PSR-18 HTTP Client Interface specification.
|
|
library http_client;
|
|
|
|
export 'src/client_interface.dart';
|
|
export 'src/exceptions.dart';
|