diff --git a/pkg/database/timetable.go b/pkg/database/timetable.go index fd2ff1c..8c40222 100644 --- a/pkg/database/timetable.go +++ b/pkg/database/timetable.go @@ -5,24 +5,24 @@ import ( ) type Stop struct { - publicDeparture *string - wttDeparture *string - publicArrival *string - wttArrival *string - isPublic bool - tiploc string + PublicDeparture *string + WttDeparture *string + PublicArrival *string + WttArrival *string + IsPublic bool + Tiploc string } type Service struct { - transactionType string - stpIndicator string - operator string - trainUid string - headcode string - powerType string - planSpeed string - scheduleStartDate time.Time - scheduleEndDate time.Time - daysRun []string - stops []Stop + TransactionType string + StpIndicator string + Operator string + TrainUid string + Headcode string + PowerType string + PlanSpeed string + ScheduleStartDate time.Time + ScheduleEndDate time.Time + DaysRun []string + Stops []Stop } \ No newline at end of file