14 lines
221 B
Go
14 lines
221 B
Go
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)
|
|
})
|
|
}
|