12 lines
168 B
Go
12 lines
168 B
Go
package storable
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
const (
|
|
RefField = "ref"
|
|
)
|
|
|
|
type Ref struct {
|
|
Ref primitive.ObjectID `bson:"ref" json:"ref"`
|
|
}
|