carpool-service/internal/journeys.go

9 lines
117 B
Go
Raw Normal View History

2023-03-30 06:44:58 +00:00
package internal
2023-03-29 10:50:25 +00:00
import "time"
type PlannedJourney struct {
Route RegularRoute
DepartureDate time.Time
}