timetable-mgr/pis/types.go
Fred Boniface 488551e914
All checks were successful
Go Test / test (push) Successful in 58s
Fix PIS 'toc' and remove deduplication step
2024-11-13 10:22:42 +00:00

16 lines
343 B
Go

package pis
// Omits data which is not required
type GiteaReleaseData struct {
Name string `json:"name"`
TarballUrl string `json:"tarball_url"`
Draft bool `json:"draft"`
Prerelease bool `json:"prerelease"`
}
type PisData struct {
Code string `json:"code"`
Stops []string `json:"stops"`
Toc string `json:"toc"`
}