13 lines
296 B
Go
13 lines
296 B
Go
package structs
|
|
|
|
import "github.com/hashicorp/consul/acl"
|
|
|
|
// Identity of some entity (ex: service, node, check).
|
|
//
|
|
// TODO: this type should replace ServiceID, ServiceName, and CheckID which all
|
|
// have roughly identical implementations.
|
|
type Identity struct {
|
|
ID string
|
|
acl.EnterpriseMeta
|
|
}
|