mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
12 lines
237 B
Go
12 lines
237 B
Go
package yqlib
|
|
|
|
func ReadNavigationStrategy() NavigationStrategy {
|
|
return &NavigationStrategyImpl{
|
|
visitedNodes: []*NodeContext{},
|
|
pathParser: NewPathParser(),
|
|
visit: func(nodeContext NodeContext) error {
|
|
return nil
|
|
},
|
|
}
|
|
}
|