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.
gomongo/time.go

15 lines
225 B

2 years ago
package gomongo
import (
"github.com/dtapps/gotime"
"time"
)
2 years ago
// BsonTime 类型
type BsonTime string
2 years ago
// BsonTime 时间类型
func (c *Client) BsonTime(value time.Time) string {
return gotime.SetCurrent(value).Bson()
}