2024-12-27 22:34:43 +01:00
|
|
|
package data
|
|
|
|
|
|
2025-01-02 15:27:53 +01:00
|
|
|
// Defines an Id function that uniquely identifies an object. This may be used
|
|
|
|
|
// as a primary key in a database/ datastore.
|
2024-12-27 22:34:43 +01:00
|
|
|
type IIdentifiable interface {
|
2024-12-29 01:05:04 +01:00
|
|
|
Id() string // not allowed to contain a ':'
|
2024-12-27 22:34:43 +01:00
|
|
|
}
|