timetable-mgr/pis/types.go
Fred Boniface 90e8fd5649
All checks were successful
Go Test / test (push) Successful in 2m3s
Begin PIS implementation
2024-05-02 15:35:00 +01:00

10 lines
228 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"`
}