Skip to content

Instantly share code, notes, and snippets.

@bolaware
Last active June 17, 2019 22:40
Show Gist options
  • Save bolaware/064061360bef7e13f419afe2bffb7df0 to your computer and use it in GitHub Desktop.
Save bolaware/064061360bef7e13f419afe2bffb7df0 to your computer and use it in GitHub Desktop.
fun login(body: LoginBody): LiveData<Result<LoginResponse>> {
return makeCall(call = {
service.login(body)
})
}
fun signup(body: SignBody): LiveData<Result<SignUpResponse>> {
return makeCall(call = {
service.signUp(body)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment