mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
11 lines
253 B
Dart
11 lines
253 B
Dart
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();
|
|
}
|
|
}
|