Files
2024-07-19 12:50:57 +02:00

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