mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-24 13:47:24 +00:00
refactor(structure): move benchmarks, scenarios, adapters, utils to dedicated folders; update imports/project layout
This commit is contained in:
9
benchmark_cherrypick/lib/di_adapters/di_adapter.dart
Normal file
9
benchmark_cherrypick/lib/di_adapters/di_adapter.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'package:cherrypick/cherrypick.dart';
|
||||
|
||||
abstract class DIAdapter {
|
||||
void setupModules(List<Module> modules);
|
||||
T resolve<T>({String? named});
|
||||
Future<T> resolveAsync<T>({String? named});
|
||||
void teardown();
|
||||
DIAdapter openSubScope(String name);
|
||||
}
|
||||
Reference in New Issue
Block a user