Skip to content

Instantly share code, notes, and snippets.

View LuizTM's full-sized avatar
🎯
Focusing

Luiz T. LuizTM

🎯
Focusing
View GitHub Profile
@LuizTM
LuizTM / DIExample.kt
Last active June 11, 2025 06:08
Kotlin DI Scratch
package com.luiztm.ui.dependency
import kotlin.reflect.KClass
//interface Analytics
interface Analytics {
fun doSomething(): String
}
fun Map<String, () -> Any>.injectAnalytics(): Lazy<Analytics> = lazy {