Exemplo n.º 1
0
func (ship *Ship) SaveLocation(db *loge.LogeDB) {
	if ship.Location == nil {
		return
	}

	db.SetOne("shiplocation", loge.LogeKey(ship.ID), ship.Location)
}