Skip to content

Instantly share code, notes, and snippets.

@tj
Last active August 19, 2020 18:40
Embed
What would you like to do?
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