Files
sendico/api/pkg/db/storable/storable.go
2026-01-31 00:26:42 +01:00

11 lines
175 B
Go

package storable
import "go.mongodb.org/mongo-driver/v2/bson"
type Storable interface {
GetID() *bson.ObjectID
SetID(objID bson.ObjectID)
Update()
Collection() string
}