Initial commit

This commit is contained in:
2024-07-19 12:50:57 +02:00
commit ff0811bf90
7 changed files with 448 additions and 0 deletions

19
entity.go Normal file
View 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