Vladimir Hodakov
c9855116da
As result of profile format change, introduced in game update yesterday we need to change profile regexp. As result of some refactoring, rarely changed data removed from database and added to sources of bot.
12 lines
233 B
Go
12 lines
233 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017-2018 Vladimir "fat0troll" Hodakov
|
||
|
||
package datamapping
|
||
|
||
// League is a struct, which represents league data
|
||
type League struct {
|
||
ID int
|
||
Symbol string
|
||
Name string
|
||
}
|