Skip to content

Instantly share code, notes, and snippets.

@le0nidas
Created August 25, 2019 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save le0nidas/53e1b2649eb59e5674327c0594acb431 to your computer and use it in GitHub Desktop.
Save le0nidas/53e1b2649eb59e5674327c0594acb431 to your computer and use it in GitHub Desktop.
fun validateEmailAddress(value: String) {
// does some validation
}
fun validatePassword(validEmailAddress: String, password: String) {
// does some validation
}
fun requestToken(validEmailAddress: String, validPassword: String): String {
return "some kind of token"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment