git-bug/entity/interface.go
2019-03-27 21:44:11 +01:00

9 lines
185 B
Go

package entity
type Interface interface {
// Id return the Entity identifier
Id() string
// HumanId return the Entity identifier truncated for human consumption
HumanId() string
}