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"
|
|
|
|
|
2024-04-11 21:06:23 +01:00
|
|
|
// 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
|
2024-04-15 20:03:48 +01:00
|
|
|
type ParsedData struct {
|
|
|
|
Header upstreamApi.JsonTimetableV1
|
|
|
|
Assoc []upstreamApi.JsonAssociationV1
|
|
|
|
Sched []upstreamApi.JsonScheduleV1
|
2024-03-28 22:47:08 +00:00
|
|
|
}
|