8 lines
237 B
Dart
8 lines
237 B
Dart
|
/// A PSR-20 compatible clock interface for Dart.
|
||
|
///
|
||
|
/// This library provides a minimal interface for reading the current time,
|
||
|
/// following the PSR-20 Clock Interface specification.
|
||
|
library clock;
|
||
|
|
||
|
export 'src/clock_interface.dart';
|