Skip to content

Instantly share code, notes, and snippets.

@lucapiccinelli
Last active January 7, 2021 07:48
Show Gist options
  • Save lucapiccinelli/fd31805245e45633838ee6f6090571b2 to your computer and use it in GitHub Desktop.
Save lucapiccinelli/fd31805245e45633838ee6f6090571b2 to your computer and use it in GitHub Desktop.
class PasswordResetService(){
fun send(email: Email.Verified): Unit = TODO("send reset")
}
class EmailVerificationService(){
fun verify(unverifiedEmail: Email.Unverified): Email.Verified? =
if(incredibleConditions())Email.Verified(unverifiedEmail) else null
private fun incredibleConditions() = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment