interface.go

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