Skip to content

Instantly share code, notes, and snippets.

@vikasmain
Created July 25, 2020 12:32
Show Gist options
  • Save vikasmain/9457e37318f203200af6523adb3df803 to your computer and use it in GitHub Desktop.
Save vikasmain/9457e37318f203200af6523adb3df803 to your computer and use it in GitHub Desktop.
class LoginRepository @Inject constructor(private val loggedinApi : LoggedInApi) {
fun isUserLoggedIn() : Boolean {
return loggedInApi.isUserLoggedIn()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment