import other kontor repos into directories
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package tysc
|
||||
|
||||
import (
|
||||
"gopkg.in/mgo.v2/bson"
|
||||
)
|
||||
|
||||
// Player defines the data model for TYSC players with id, first and lastname.
|
||||
type Player struct {
|
||||
ID bson.ObjectId `json:"_id" bson:"_id,omitempty"`
|
||||
Firstname string `json:"firstname" bson:"firstname"`
|
||||
Lastname string `json:"lastname" bson:"lastname"`
|
||||
Model string `json:"model" bson:"model,omitempty"`
|
||||
}
|
||||
Reference in New Issue
Block a user