mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 09:52:51 +00:00
14 lines
186 B
Go
14 lines
186 B
Go
package test
|
|
|
|
import (
|
|
"gopkg.in/mgo.v2/bson"
|
|
"time"
|
|
)
|
|
|
|
type Person struct {
|
|
ID bson.ObjectId `bson:"_id,omitempty"`
|
|
LastName string
|
|
FirstName string
|
|
Timestamp time.Time
|
|
}
|