Change Identifiable interface to only use GetID() uint function

This commit is contained in:
qowevisa 2024-11-20 18:44:44 +02:00
parent d41e6301e5
commit 579bb031c7

View File

@ -2,7 +2,6 @@ package db
type Identifiable interface { type Identifiable interface {
GetID() uint GetID() uint
SetID(id uint)
} }
type UserIdentifiable interface { type UserIdentifiable interface {