13 lines
237 B
Go
Raw Normal View History

2025-02-16 09:44:31 +01:00
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"`
}