tangem-app-android-audited/.idea/fileTemplates/FlowPackaging.kt.child.5.kt
2025-10-02 11:46:33 +04:00

10 lines
No EOL
262 B
Kotlin

#if (${PACKAGE_NAME} != "")package ${PACKAGE_NAME}.fetcher#end
import com.tangem.domain.core.flow.FlowFetcher
interface ${NAME}Fetcher : FlowFetcher<${NAME}Fetcher.Params> {
data class Params(
val id: String, // TODO("Not yet implemented")
)
}