Skip to content

Instantly share code, notes, and snippets.

@vitiko
Created February 20, 2019 20:59
Show Gist options
  • Save vitiko/b50561d999d2fc0bb042056aebfdfa4e to your computer and use it in GitHub Desktop.
Save vitiko/b50561d999d2fc0bb042056aebfdfa4e to your computer and use it in GitHub Desktop.
Keyer interface.go
type (
// Key type
Key []string
// Keyer interface for entity containing logic of its key creation
Keyer interface {
Key() (Key, error)
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment