Last active
August 19, 2020 18:40
-
-
Save tj/479a7c5923388a6a7e7557ca94b990e4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
type User enum { | |
Authenticated struct { | |
Name string | |
} | |
Anonymous struct {} | |
} | |
// and/or | |
type Authenticated struct { | |
Name string | |
} | |
type Anonymous struct {} | |
type User enum { | |
Authenticated | |
Anonymous | |
} | |
This file contains hidden or 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
type User interface { | |
isUser() | |
} | |
type Authenticated struct { | |
Name string | |
} | |
func (Authenticated) isUser(){} | |
type Anonymous struct {} | |
func (Anonymous) isUser(){} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment