mirror of
https://github.com/CyberL1/holesail-proxy.git
synced 2025-02-23 02:29:21 -05:00
13 lines
237 B
Go
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"`
|
|
}
|