timetable-mgr/cif/types.go

11 lines
245 B
Go
Raw Normal View History

2024-03-28 22:47:08 +00:00
package cif
2024-04-03 22:25:27 +01:00
import "git.fjla.uk/owlboard/go-types/pkg/upstreamApi"
// Holds parsed data for processing
type parsedData struct {
header upstreamApi.JsonTimetableV1
assoc []upstreamApi.JsonAssociationV1
sched []upstreamApi.JsonScheduleV1
2024-03-28 22:47:08 +00:00
}