change IIdentifiable interface to use a string instead of int

This commit is contained in:
2024-12-29 01:05:04 +01:00
parent b47b6d51b2
commit e3fcd62159
4 changed files with 10 additions and 17 deletions

View File

@@ -2,5 +2,5 @@ package data
// TODO docstring
type IIdentifiable interface {
Id() uint
Id() string // not allowed to contain a ':'
}