go-gluon-publisher/types.go

16 lines
261 B
Go
Raw Normal View History

2023-05-29 19:33:50 +00:00
package main
type Files struct {
Model string
Release string
Checksum string
Size int64
Name string
}
2023-06-02 17:04:31 +00:00
type Versions struct {
Stable string `json:"stable"`
Beta string `json:"beta"`
Experimental string `json:"experimental"`
}