package view_handler import ( "net/http" "github.com/labstack/echo/v4" ) func CreateSession(c echo.Context) error { return c.Render(http.StatusOK, "create_session", map[string]interface{}{ "name": "create session", }) }