Mirror of a distributed, offline-first bug tracker embedded in git
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}