10 lines
304 B
Dart
10 lines
304 B
Dart
|
/// A PSR-6 compatible caching library for Dart.
|
||
|
///
|
||
|
/// This library provides interfaces for caching implementations following
|
||
|
/// the PSR-6 Cache Interface specification.
|
||
|
library cache;
|
||
|
|
||
|
export 'src/cache_item_interface.dart';
|
||
|
export 'src/cache_item_pool_interface.dart';
|
||
|
export 'src/exceptions.dart';
|