Clean project: remove test files, debug logs, and add documentation
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/// Configuration de l'injection de dépendances pour le module Cotisations
|
||||
library cotisations_di;
|
||||
|
||||
import 'package:get_it/get_it.dart';
|
||||
import '../bloc/cotisations_bloc.dart';
|
||||
|
||||
/// Enregistrer les dépendances du module Cotisations
|
||||
void registerCotisationsDependencies(GetIt getIt) {
|
||||
// BLoC
|
||||
getIt.registerFactory<CotisationsBloc>(
|
||||
() => CotisationsBloc(),
|
||||
);
|
||||
|
||||
// Repository sera ajouté ici quand l'API backend sera prête
|
||||
// getIt.registerLazySingleton<CotisationRepository>(
|
||||
// () => CotisationRepositoryImpl(dio: getIt()),
|
||||
// );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user