Files
cherrypick/benchmark_cherrypick/lib/scenarios/parent_module.dart

11 lines
248 B
Dart
Raw Normal View History

import 'package:cherrypick/cherrypick.dart';
import 'parent_impl.dart';
import 'shared.dart';
class ParentModule extends Module {
@override
void builder(Scope currentScope) {
bind<Shared>().toProvide(() => ParentImpl()).singleton();
}
}