github.com/GuanceCloud/cliutils@v1.1.21/pipeline/ptinput/funcs/fn_jsonall.go (about)

     1  // Unless explicitly stated otherwise all files in this repository are licensed
     2  // under the MIT License.
     3  // This product includes software developed at Guance Cloud (https://www.guance.com/).
     4  // Copyright 2021-present Guance, Inc.
     5  
     6  package funcs
     7  
     8  import (
     9  	"github.com/GuanceCloud/platypus/pkg/ast"
    10  	"github.com/GuanceCloud/platypus/pkg/engine/runtime"
    11  	"github.com/GuanceCloud/platypus/pkg/errchain"
    12  )
    13  
    14  func JSONAllChecking(ctx *runtime.Task, funcExpr *ast.CallExpr) *errchain.PlError {
    15  	l.Debugf("warning: json_all() is disabled")
    16  	return nil
    17  }
    18  
    19  func JSONAll(ctx *runtime.Task, funcExpr *ast.CallExpr) *errchain.PlError {
    20  	l.Debugf("warning: json_all() is disabled")
    21  	return nil
    22  }