mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
- Successfully executed all scenarios (register, chain, asyncChain, named, override, etc) for Cherrypick, GetIt, and Riverpod - Verified correct integration of fully generic DIAdapter & universalRegistration architecture - Ensured type-safety in all setup/registration flows after complete refactor - All benchmarks run and pass under stress/load params for each DI adapter
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,
|
|
}
|