notify.moe/arn/Identifiable.go

7 lines
138 B
Go

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