package routes import ( "net/http" "zestack.dev/slim" ) func showHome(c slim.Context) error { return c.Render(http.StatusOK, "index.gohtml", "ws://"+c.Request().Host+"/notify") }