Merge branch 'refs/heads/feat-cid-run-list' into release

This commit is contained in:
junleea 2025-10-02 21:25:19 +08:00
commit da70405ab3
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package handler
import ( import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"log"
"net/http" "net/http"
"videoplayer/proto" "videoplayer/proto"
"videoplayer/service" "videoplayer/service"
@ -178,7 +179,9 @@ func RunSQLHandler(c *gin.Context) {
resp.Data = res resp.Data = res
} }
} }
log.Println("run sql resp, sql is:", req.SQL)
c.JSON(http.StatusOK, resp) c.JSON(http.StatusOK, resp)
return
} }
func GetDBTableDescHandler(c *gin.Context) { func GetDBTableDescHandler(c *gin.Context) {