```val dataSourceModule: Module = module { sin...
# koin
s
Copy code
val dataSourceModule: Module = module {
    single { CommentDataSourceCache(cache = get(COMMENT_ENTITY_CACHE)) as CommentDataSource }
    single { CommentDataSourceRemote(commentsApi = commentsApi) as CommentDataSource }
}