Compare commits

...

3 Commits

4 changed files with 25 additions and 7 deletions

View File

@ -1,5 +1,9 @@
package gameUtils
import (
"encoding/json"
)
func FindGameByID(id string, list Games) SteamGame {
for _, game := range list.SteamGames {
if game.GameId == id {
@ -29,3 +33,9 @@ func GetJSGameInterface(game SteamGame) JSGameInterface {
}
return newInterface
}
func ConvertServerGamesToJSON(g Games) []byte {
g_json, err := json.Marshal(g)
_ = err //TODO: Check Errors
return g_json
}

View File

@ -1,5 +0,0 @@
package sessionUtils
func GetJSSessionInterface(s Session) JSSessionInterface {
return JSSessionInterface{}
}

View File

@ -5,8 +5,8 @@ import (
)
type Session struct {
expirateAt time.Time
gameId string
ExpirateAt time.Time
GameId string
}
type JSSessionInterface struct {

View File

@ -0,0 +1,13 @@
package sessionUtils
import "encoding/json"
func ConvertServerSessionsToJSON(s Session) []byte {
s_json, err := json.Marshal(s)
_ = err //TODO: Check Errors
return s_json
}
func GetJSSessionInterface(s Session) JSSessionInterface {
return JSSessionInterface{}
}