Skip to content

Instantly share code, notes, and snippets.

Avatar
:octocat:
Available!

Amin Hassani aminography

:octocat:
Available!
View GitHub Profile
View BaseUseCase.kt
import kotlinx.coroutines.CoroutineScope
abstract class BaseUseCase<ParamsType, ResultType> {
abstract fun execute(
coroutineScope: CoroutineScope,
params: ParamsType
): ResultType
}