mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08: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
|
|
},
|
|
}
|
|
}
|