blob: 62b92a582af0af4e22d88a73d733550c44dc61fa (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package entity
type Interface interface {
// Id return the Entity identifier
Id() string
// HumanId return the Entity identifier truncated for human consumption
HumanId() string
}
|