13 lines
167 B
Go
13 lines
167 B
Go
package db
|
|
|
|
type Identifiable interface {
|
|
GetID() uint
|
|
SetID(id uint)
|
|
}
|
|
|
|
type UserIdentifiable interface {
|
|
GetID() uint
|
|
GetUserID() uint
|
|
SetUserID(userID uint)
|
|
}
|