mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
10 lines
202 B
Go
10 lines
202 B
Go
|
package interfaces
|
||
|
|
||
|
import "github.com/google/uuid"
|
||
|
|
||
|
// Identifiable represents an object that can be uniquely identified by its Id.
|
||
|
type Identifiable interface {
|
||
|
Id() uuid.UUID
|
||
|
SetId(id uuid.UUID)
|
||
|
}
|