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
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 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