곳간에서 인심난다/실무

[Kotlin] BaseUseCase

⭐⭐기록 2023. 1. 12. 16:53
abstract class UseCase<out Type, in Params> where Type : Any {
    abstract suspend operator fun invoke(params: Params): Type?
}