mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-24 13:47:24 +00:00
10 lines
215 B
Dart
10 lines
215 B
Dart
|
|
import 'package:cherrypick/cherrypick.dart';
|
||
|
|
import 'foo_service.dart';
|
||
|
|
|
||
|
|
class AppModule extends Module {
|
||
|
|
@override
|
||
|
|
void builder(Scope currentScope) {
|
||
|
|
bind<FooService>().toProvide(() => FooService());
|
||
|
|
}
|
||
|
|
}
|