Here is my noobish problem. I have this struct in my models/model.go
models/model.go
package models import ( \"time\" \"gopkg.in/mgo.v2/bso
Use
var horseStore = make(map[string]models.Horse)
When accessing an identifier from another package you will always have to prefix it with the packages name and a dot: package.Identifier
package.Identifier