7 lines
113 B
Go
7 lines
113 B
Go
package data
|
|
|
|
// TODO docstring
|
|
type IIdentifiable interface {
|
|
Id() string // not allowed to contain a ':'
|
|
}
|