This commit is contained in:
2018-11-10 20:58:15 +05:00
parent 39ac02dfc5
commit 2b3c9ef9ea
25 changed files with 1054 additions and 1022 deletions

View File

@@ -10,6 +10,6 @@
package datamodels
type Configuration struct {
Key string `db:"key"`
Value string `db:"value"`
Key string `db:"key"`
Value string `db:"value"`
}

View File

@@ -10,5 +10,5 @@
package datamodels
type Database struct {
Version string `db:"version"`
Version string `db:"version"`
}

View File

@@ -10,16 +10,16 @@
package datamodels
type Profile struct {
// Profile name.
Name string `db:"name"`
// Game version.
Version string `db:"version"`
// Binary path.
Binary string `db:"binary"`
// Will we use second X session?
Second_x_session string `db:"second_x_session"`
// Additional game parameters we will pass.
Additional_params string `db:"additional_parameters"`
// Profile path.
Profile_path string `db:"profile_path"`
// Profile name.
Name string `db:"name"`
// Game version.
Version string `db:"version"`
// Binary path.
Binary string `db:"binary"`
// Will we use second X session?
Second_x_session string `db:"second_x_session"`
// Additional game parameters we will pass.
Additional_params string `db:"additional_parameters"`
// Profile path.
Profile_path string `db:"profile_path"`
}

View File

@@ -10,36 +10,36 @@
package datamodels
type Server struct {
// Server's address
Ip string `db:"ip"`
// Server's port
Port string `db:"port"`
// Server's name
Name string `db:"name"`
// Current players count
Players string `db:"players"`
// Bots count
Bots string `db:"bots"`
// Maximum players
Maxplayers string `db:"maxplayers"`
// Ping
Ping string `db:"ping"`
// Gametype. See Urban Terror documentation on relationship.
Gamemode string `db:"gamemode"`
// Current map
Map string `db:"map"`
// Server's software version
Version string `db:"version"`
// Is server was favorited?
Favorite string `db:"favorite"`
// Server's password.
Password string `db:"password"`
// Profile to use with server.
ProfileToUse string `db:"profile_to_use"`
// Extended server's configuration.
ExtendedConfig string `db:"extended_config"`
// Players information.
PlayersInfo string `db:"players_info"`
// Is server private?
IsPrivate string `db:"is_private"`
// Server's address
Ip string `db:"ip"`
// Server's port
Port string `db:"port"`
// Server's name
Name string `db:"name"`
// Current players count
Players string `db:"players"`
// Bots count
Bots string `db:"bots"`
// Maximum players
Maxplayers string `db:"maxplayers"`
// Ping
Ping string `db:"ping"`
// Gametype. See Urban Terror documentation on relationship.
Gamemode string `db:"gamemode"`
// Current map
Map string `db:"map"`
// Server's software version
Version string `db:"version"`
// Is server was favorited?
Favorite string `db:"favorite"`
// Server's password.
Password string `db:"password"`
// Profile to use with server.
ProfileToUse string `db:"profile_to_use"`
// Extended server's configuration.
ExtendedConfig string `db:"extended_config"`
// Players information.
PlayersInfo string `db:"players_info"`
// Is server private?
IsPrivate string `db:"is_private"`
}