timetable-mgr/cif/types.go

14 lines
414 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"
// This file is for internal types to `package cif`, any types which represent
// database or external API resources should be defined in git.fjla.uk/owlboard/go-types
2024-04-03 22:25:27 +01:00
// 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
}