timetable-mgr/cif/types.go
Fred Boniface 94f880bcde
All checks were successful
Go Test / test (push) Successful in 30s
Add comment description to cif/types.go
2024-04-11 21:06:23 +01:00

14 lines
414 B
Go

package cif
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
// Holds parsed data for processing
type parsedData struct {
header upstreamApi.JsonTimetableV1
assoc []upstreamApi.JsonAssociationV1
sched []upstreamApi.JsonScheduleV1
}