Some checks are pending
Backend CI / test (push) Waiting to run
Backend CI / build (push) Blocked by required conditions
Deploy Mnemo Cards / Deploy Backend (push) Waiting to run
Deploy Mnemo Cards / Deploy Web App (push) Blocked by required conditions
Deploy Mnemo Cards / Final Verification (push) Blocked by required conditions
15 lines
364 B
Dart
15 lines
364 B
Dart
import 'package:get_it/get_it.dart';
|
|
import 'package:injectable/injectable.dart';
|
|
|
|
import 'injector.config.dart';
|
|
import 'modules.dart';
|
|
|
|
final getIt = GetIt.instance;
|
|
|
|
@InjectableInit(
|
|
initializerName: 'init', // default
|
|
preferRelativeImports: true, // default
|
|
asExtension: true, // default
|
|
)
|
|
@InjectableInit()
|
|
void configureDependencies() => getIt.init();
|