Skip to content

Instantly share code, notes, and snippets.

@tj
Last active August 19, 2020 18:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tj/479a7c5923388a6a7e7557ca94b990e4 to your computer and use it in GitHub Desktop.
Save tj/479a7c5923388a6a7e7557ca94b990e4 to your computer and use it in GitHub Desktop.
type User enum {
Authenticated struct {
Name string
}
Anonymous struct {}
}
// and/or
type Authenticated struct {
Name string
}
type Anonymous struct {}
type User enum {
Authenticated
Anonymous
}
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