adding basic data storage

This commit is contained in:
2024-12-27 22:34:43 +01:00
parent ab1b709c77
commit aeb9de71a1
9 changed files with 259 additions and 15 deletions

View File

@@ -0,0 +1,5 @@
package data
type IIdentifiable interface {
Id() uint
}