Skip to content

Instantly share code, notes, and snippets.

View aminography's full-sized avatar
:octocat:
Available!

Amin Hassani aminography

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