10 lines
366 B
Dart
10 lines
366 B
Dart
/// A PSR-16 compatible simple cache interface for Dart.
|
|
///
|
|
/// This library provides interfaces for simple caching following
|
|
/// the PSR-16 Simple Cache Interface specification. It includes
|
|
/// a straightforward interface for cache operations and related
|
|
/// exception types.
|
|
library simple_cache;
|
|
|
|
export 'src/cache_interface.dart';
|
|
export 'src/exceptions.dart';
|