5 lines
175 B
Dart
5 lines
175 B
Dart
/// Interface for pipeline management.
|
|
abstract class Hub {
|
|
/// Send an object through one of the available pipelines.
|
|
dynamic pipe(dynamic object, [String? pipeline]);
|
|
}
|