mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
7 lines
90 B
Go
7 lines
90 B
Go
package entity
|
|
|
|
type Interface interface {
|
|
// Id return the Entity identifier
|
|
Id() Id
|
|
}
|