Initial commit
This commit is contained in:
19
entity.go
Normal file
19
entity.go
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
Reference in New Issue
Block a user