mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
8 lines
173 B
Go
8 lines
173 B
Go
package treeops
|
|
|
|
import "container/list"
|
|
|
|
func SelfOperator(d *dataTreeNavigator, matchMap *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
return matchMap, nil
|
|
}
|