Archived
1

YAML files for rarely changed data. New weapon stats.

This commit is contained in:
2018-04-30 19:46:28 +04:00
parent 87214a9973
commit b1975a161c
14 changed files with 413 additions and 42 deletions

View File

@@ -5,7 +5,7 @@ package datamapping
// League is a struct, which represents league data
type League struct {
ID int
Symbol string
Name string
ID int `yaml:"id"`
Symbol string `yaml:"symbol"`
Name string `yaml:"name"`
}