Files
go-gin-api/internal/web/controller/tool_handler/func_hashidsview.go
T
2021-03-28 15:52:02 +08:00

13 lines
263 B
Go

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