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