package application func (app *Application) addUsersToGames() { for _, usr := range app.users { if gm, err := app.GetGameById(usr.GetGameId()); err != nil { continue } else { gm.AddPlayer(usr) } } }