From 45a81e1e35b7faff36ac5c8407f9fa97bf88e8c2 Mon Sep 17 00:00:00 2001 From: Cutiful <113351087+Syaroful@users.noreply.github.com> Date: Thu, 10 Jul 2025 18:16:52 +0700 Subject: [PATCH] feat: Add Koin module for growth recipe feature --- .../growth_recipe_feature/di/AppModule.kt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/di/AppModule.kt diff --git a/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/di/AppModule.kt b/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/di/AppModule.kt new file mode 100644 index 0000000..7e24eac --- /dev/null +++ b/agrilinkvocpro/growth_recipe_feature/src/main/java/com/syaroful/agrilinkvocpro/growth_recipe_feature/di/AppModule.kt @@ -0,0 +1,10 @@ +package com.syaroful.agrilinkvocpro.growth_recipe_feature.di + +import com.syaroful.agrilinkvocpro.growth_recipe_feature.data.repository.ClusteringRepository +import com.syaroful.agrilinkvocpro.growth_recipe_feature.data.repository.GraphicDataRepository +import org.koin.dsl.module + +val appModule = module { + single { GraphicDataRepository(get()) } + single { ClusteringRepository(get()) } +} \ No newline at end of file