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