Files
go-gin-api/internal/web/controller/generator_handler/func_handlerview.go
T
2021-05-09 21:43:23 +08:00

12 lines
217 B
Go

package generator_handler
import (
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
)
func (h *handler) HandlerView() core.HandlerFunc {
return func(c core.Context) {
c.HTML("generator_handler", nil)
}
}