carpool-service/internal/search-results.go

16 lines
284 B
Go
Raw Normal View History

2023-03-30 06:44:58 +00:00
package internal
import (
"time"
"git.coopgo.io/coopgo-platform/routing-service"
"github.com/paulmach/orb/geojson"
)
type SearchResult struct {
ID string `bson:"_id"`
Route *geojson.FeatureCollection
DepartureDate time.Time
Itinerary *routing.Route
}