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