package routewde import ( "net/http" "github.com/gin-gonic/gin" ) func Route(route *gin.RouterGroup) { route.GET("/getbasicwindow", func(ctx *gin.Context) { ctx.HTML(http.StatusOK, "basic-window.html", nil) }) }