mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
24 lines
466 B
Go
24 lines
466 B
Go
package yqlib
|
|
|
|
import (
|
|
yaml "gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type ValueParser interface {
|
|
Parse(argument string, customTag string) *yaml.Node
|
|
}
|
|
|
|
type valueParser struct {
|
|
}
|
|
|
|
func NewValueParser() ValueParser {
|
|
return &valueParser{}
|
|
}
|
|
|
|
func (v *valueParser) Parse(argument string, customTag string) *yaml.Node {
|
|
if argument == "[]" {
|
|
return &yaml.Node{Tag: "!!seq", Kind: yaml.SequenceNode}
|
|
}
|
|
return &yaml.Node{Value: argument, Tag: customTag, Kind: yaml.ScalarNode}
|
|
}
|