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