7 lines
138 B
Go
Raw Normal View History

package arn
// Identifiable applies to any type that has an ID and exposes it via GetID.
type Identifiable interface {
GetID() string
}