feat: Add Koin module for growth recipe feature

This commit is contained in:
Cutiful 2025-07-10 18:16:52 +07:00
parent cfa75a4289
commit 45a81e1e35

View File

@ -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()) }
}