platform/fig/http_factory/lib/http_factory.dart

9 lines
341 B
Dart

/// A PSR-17 compatible HTTP factory interface for Dart.
///
/// This library provides interfaces for HTTP message factories following
/// the PSR-17 HTTP Factory Interface specification.
library http_factory;
export 'src/request_factory_interface.dart';
export 'src/stream_factory_interface.dart';
export 'src/uri_factory_interface.dart';