mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-24 21:57:58 +00:00
12 lines
235 B
Dart
12 lines
235 B
Dart
|
|
/// Enum to represent the DI registration/binding mode.
|
||
|
|
enum UniversalBindingMode {
|
||
|
|
/// Singleton/provider binding.
|
||
|
|
singletonStrategy,
|
||
|
|
|
||
|
|
/// Factory-based binding.
|
||
|
|
factoryStrategy,
|
||
|
|
|
||
|
|
/// Async-based binding.
|
||
|
|
asyncStrategy,
|
||
|
|
}
|