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.

10 lines
206 B

  1. package models
  2. import "gopkg.in/mgo.v2/bson"
  3. type Planet struct {
  4. Id bson.ObjectId `json:"id", bson:"_id, omitempty"`
  5. Size int64 // fields/slots
  6. Name string
  7. OwnerId bson.ObjectId
  8. }