12345678910111213141516171819 |
- //go:build socketio_client_tool
- // +build socketio_client_tool
- package socketio_client_tool
- import (
- "github.com/gin-gonic/gin"
- "io/fs"
- "net/http"
- "pms-api-go/web"
- )
- /* 20230419 pms 删除 =======================================================================================================
- func Enable(router *gin.Engine) {
- socketIOToolRoot, _ := fs.Sub(web.SocketIOClientTool, "www/socketio-client-tool")
- router.StaticFS("/socketio-client-tool", http.FS(socketIOToolRoot))
- }
- * ========================================================================================================================= */
|