fields changes
This commit is contained in:
parent
dfb6be1fba
commit
4b073d2cd5
@ -7,7 +7,7 @@ var garrysmodGame = SteamGame{
|
||||
Platforms: map[string]bool{"linux": true},
|
||||
Assets: GameInterfaceAssets{
|
||||
Title: "Garry's Mod",
|
||||
Image: "gmod.png",
|
||||
Icon: "icon.png",
|
||||
Description: "",
|
||||
},
|
||||
}
|
||||
@ -19,7 +19,7 @@ var openarena = SteamGame{
|
||||
Args: []string{},
|
||||
Assets: GameInterfaceAssets{
|
||||
Title: "Open Arena",
|
||||
Image: "openarena.jpg",
|
||||
Icon: "icon.jpg",
|
||||
Description: "asdadasd",
|
||||
},
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ type SteamGame struct {
|
||||
|
||||
type GameInterfaceAssets struct {
|
||||
Title string
|
||||
Image string
|
||||
Icon string
|
||||
Description string
|
||||
}
|
||||
|
||||
@ -21,6 +21,6 @@ type Games struct {
|
||||
type JSGameInterface struct {
|
||||
GameID string `json:"gameId"`
|
||||
Title string `json:"title"`
|
||||
Image string `json:"image"`
|
||||
Icon string `json:"icon"`
|
||||
Description string `json:"description"`
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ func GetJSGameInterface(game SteamGame) JSGameInterface {
|
||||
newInterface := JSGameInterface{
|
||||
GameID: game.GameId,
|
||||
Title: game.Assets.Title,
|
||||
Image: game.Assets.Image,
|
||||
Icon: game.Assets.Icon,
|
||||
Description: game.Assets.Description,
|
||||
}
|
||||
return newInterface
|
||||
|
@ -5,8 +5,12 @@ import (
|
||||
)
|
||||
|
||||
type Session struct {
|
||||
Expires time.Time
|
||||
GameId string
|
||||
Icon string
|
||||
Title string
|
||||
Status string
|
||||
Version string
|
||||
Expires time.Time
|
||||
}
|
||||
|
||||
type JSSessionInterface struct {
|
||||
|
Loading…
Reference in New Issue
Block a user