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 {
VersionNums `json:"version"`
@ -40,10 +40,10 @@ type AssetIndex struct {
Artifact
}
type Argument struct {
Value string `json:"value"`
Rules []Rule `json:"rules"`
}
// type Argument struct {
// Value string `json:"value"`
// Rules []Rule `json:"rules"`
// }
type Rule struct {
Action RuleAct `json:"action" mapstructure:"action"`
@ -103,3 +103,6 @@ type ModArtifact struct {
Name string
Version string
}
type VersionMeta struct {
}