personal-website/routewde/wde.go

14 lines
221 B
Go
Raw Normal View History

2023-03-17 01:16:51 +00:00
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)
})
}