mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08:00
8 lines
171 B
Go
8 lines
171 B
Go
package yqlib
|
|
|
|
import "container/list"
|
|
|
|
func selfOperator(d *dataTreeNavigator, matchMap *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
return matchMap, nil
|
|
}
|