add test struct

This commit is contained in:
cyber-dream 2023-02-12 19:58:30 +03:00
parent 79886cbfae
commit d21061e36d

View File

@ -1,4 +1,4 @@
package minecraftgame package domain
type JavaVersion struct { type JavaVersion struct {
VersionNums `json:"version"` VersionNums `json:"version"`
@ -40,10 +40,10 @@ type AssetIndex struct {
Artifact Artifact
} }
type Argument struct { // type Argument struct {
Value string `json:"value"` // Value string `json:"value"`
Rules []Rule `json:"rules"` // Rules []Rule `json:"rules"`
} // }
type Rule struct { type Rule struct {
Action RuleAct `json:"action" mapstructure:"action"` Action RuleAct `json:"action" mapstructure:"action"`
@ -103,3 +103,6 @@ type ModArtifact struct {
Name string Name string
Version string Version string
} }
type VersionMeta struct {
}