Skip to content

Instantly share code, notes, and snippets.

@nphausg
Created September 12, 2024 01:27
Show Gist options
  • Save nphausg/d8ab513f232332237b0141659c489222 to your computer and use it in GitHub Desktop.
Save nphausg/d8ab513f232332237b0141659c489222 to your computer and use it in GitHub Desktop.
class GetAppConfigUseCase(private val repository: AppConfigRepository) {
suspend operator fun invoke() {
repository.getConfig(
onSuccess = ::save,
onFailure = ::logError
)
}
fun save(config: AppConfig) {
}
fun logError(throwable: Throwable?) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment