mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
10 lines
202 B
Go
10 lines
202 B
Go
package gencode_handler
|
|
|
|
import "github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
|
|
func (h *handler) InitView() core.HandlerFunc {
|
|
return func(c core.Context) {
|
|
c.HTML("gencode_init", nil)
|
|
}
|
|
}
|