refactor(structure): move benchmarks, scenarios, adapters, utils to dedicated folders; update imports/project layout

This commit is contained in:
Sergey Penkovsky
2025-08-06 16:21:31 +03:00
parent 553dbb6539
commit b27a7df161
27 changed files with 332 additions and 327 deletions

View File

@@ -0,0 +1,10 @@
import 'package:cherrypick/cherrypick.dart';
import 'child_impl.dart';
import 'shared.dart';
class ChildOverrideModule extends Module {
@override
void builder(Scope currentScope) {
bind<Shared>().toProvide(() => ChildImpl()).singleton();
}
}