Created
May 2, 2020 12:41
-
-
Save RubaXa/bcd9effc1b9840ed897e2bac13ff17f7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package types | |
type Login string | |
func (v Login) TypeDescription() string { | |
return "Login пользователя (он же email, телефон или соц. аккаунт)" | |
} | |
func GenLogin() Login { | |
return "[email protected]" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment