concurrent working

This commit is contained in:
Dan Dobos
2021-11-02 16:32:21 +01:00
parent 43380ec064
commit 7ab57f2ea0
3 changed files with 76 additions and 40 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ func (s *ApplicationServer) pokemonPageHandler() func(*gin.Context) {
return func(c *gin.Context) {
c.HTML(http.StatusOK, "views/Pokemons.gohtml", pokemongotemplates.PageData{
NavigationLinks: pokemongotemplates.NavigationLinks,
Data: *data,
Data: data,
})
}
}