2025-02-16 09:44:31 +01:00

13 lines
237 B
Go

package utils
type GithubRelease struct {
TagName string `json:"tag_name"`
Prerelease bool
}
type GithubFile struct {
Name string `json:"name"`
Path string `json:"path"`
DownloadUrl string `json:"download_url"`
}