8 lines
274 B
Dart
8 lines
274 B
Dart
|
/// A PSR-15 compatible HTTP server middleware interface for Dart.
|
||
|
///
|
||
|
/// This library provides the interface for HTTP server middleware
|
||
|
/// following the PSR-15 HTTP Server Middleware specification.
|
||
|
library http_server_middleware;
|
||
|
|
||
|
export 'src/middleware_interface.dart';
|