update version: v1.1.1

This commit is contained in:
BaoXuebin 2021-12-24 12:18:59 +08:00
parent 26d367fab3
commit 5415b1cec8
2 changed files with 1 additions and 3 deletions

View File

@ -3,7 +3,6 @@ package script
import (
"encoding/json"
"fmt"
"log"
"os/exec"
"reflect"
"strconv"
@ -98,7 +97,6 @@ func BQLQueryListByCustomSelect(ledgerConfig *Config, selectBql string, queryPar
if err != nil {
return err
}
log.Println(output)
err = parseResult(output, queryResultPtr, false)
if err != nil {
return err

View File

@ -3,5 +3,5 @@ package service
import "github.com/gin-gonic/gin"
func QueryVersion(c *gin.Context) {
OK(c, "v1.1.0")
OK(c, "v1.1.1")
}