Files
go-gin-api/internal/web/controller/tool_handler/func_cacheview.go
T
2021-05-05 17:20:48 +08:00

12 lines
203 B
Go

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