You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
390 B
22 lines
390 B
package base
|
|
|
|
import (
|
|
"github.com/mainnika/mongox-go-driver/mongox"
|
|
)
|
|
|
|
var _ mongox.BaseString = &String{}
|
|
|
|
// String is a structure with string as an _id field
|
|
type String struct {
|
|
ID string `bson:"_id,omitempty" json:"_id,omitempty"`
|
|
}
|
|
|
|
// GetID returns an _id
|
|
func (db *String) GetID() string {
|
|
return db.ID
|
|
}
|
|
|
|
// SetID sets an _id
|
|
func (db *String) SetID(id string) {
|
|
db.ID = id
|
|
}
|
|
|