mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
9 lines
185 B
Go
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
|
||
|
}
|