diff --git a/CLI/ast.go b/CLI/ast.go index dba6c6dd8..89ade1947 100644 --- a/CLI/ast.go +++ b/CLI/ast.go @@ -141,15 +141,6 @@ func (n *lenNode) execute() (interface{}, error) { return len(arr), nil } -type postObjNode struct { - entity string - data map[string]interface{} -} - -func (n *postObjNode) execute() (interface{}, error) { - return cmd.PostObj(cmd.EntityStrToInt(n.entity), n.entity, n.data) -} - type helpNode struct { entry string }