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

View File

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