rename fields and comment
This commit is contained in:
parent
ebeb05cd1a
commit
1cb34f3e6c
@ -1,7 +1,17 @@
|
|||||||
package domain
|
package domain
|
||||||
|
|
||||||
|
// type JavaVersion struct {
|
||||||
|
// VersionNums `json:"version"`
|
||||||
|
// Specifics []struct {
|
||||||
|
// Os string `json:"os"`
|
||||||
|
// Arch string `json:"arch"`
|
||||||
|
// URL string `json:"URL"`
|
||||||
|
// Sha1 string `json:"SHA1"`
|
||||||
|
// } `json:"specifics"`
|
||||||
|
// }
|
||||||
|
|
||||||
type JavaVersion struct {
|
type JavaVersion struct {
|
||||||
VersionNums `json:"version"`
|
VersionNums `json:"versionnums"`
|
||||||
Specifics []struct {
|
Specifics []struct {
|
||||||
Os string `json:"os"`
|
Os string `json:"os"`
|
||||||
Arch string `json:"arch"`
|
Arch string `json:"arch"`
|
||||||
@ -11,9 +21,9 @@ type JavaVersion struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type VersionNums struct {
|
type VersionNums struct {
|
||||||
Major string `json:"major"`
|
Major int `json:"major"`
|
||||||
Minor string `json:"minor"`
|
Minor int `json:"minor"`
|
||||||
Patch string `json:"patch"`
|
Patch int `json:"patch"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Version struct {
|
type Version struct {
|
||||||
@ -100,4 +110,9 @@ type ModArtifact struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type VersionMeta struct {
|
type VersionMeta struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
|
||||||
|
Installed bool
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user