Files
crowsnest/internal/data/IIdentifiable.go

7 lines
113 B
Go
Raw Normal View History

2024-12-27 22:34:43 +01:00
package data
// TODO docstring
2024-12-27 22:34:43 +01:00
type IIdentifiable interface {
Id() string // not allowed to contain a ':'
2024-12-27 22:34:43 +01:00
}