19 lines
381 B
Go
19 lines
381 B
Go
package main
|
|
|
|
type (
|
|
Config struct {
|
|
Active bool `json:"Active"`
|
|
StackMult int `json:"StackMult"`
|
|
List []Entry `json:"List"`
|
|
}
|
|
Entry struct {
|
|
Name string `json:"name"`
|
|
Id string `json:"_id"`
|
|
Props EntryProps `json:"_props"`
|
|
}
|
|
EntryProps struct {
|
|
StackSize int `json:"StackMaxSize"`
|
|
}
|
|
)
|
|
|
|
type Locale map[string]string |