1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2024-10-19 15:24:23 +00:00
yaml-vault/vendor/github.com/hashicorp/hcl/parse.go

24 lines
524 B
Go
Raw Normal View History

2016-07-11 14:57:04 +00:00
package hcl
import (
"fmt"
"github.com/hashicorp/hcl/hcl/ast"
hclParser "github.com/hashicorp/hcl/hcl/parser"
jsonParser "github.com/hashicorp/hcl/json/parser"
)
// Parse parses the given input and returns the root object.
//
// The input format can be either HCL or JSON.
func Parse(input string) (*ast.File, error) {
switch lexMode(input) {
case lexModeHcl:
return hclParser.Parse([]byte(input))
case lexModeJson:
return jsonParser.Parse([]byte(input))
}
return nil, fmt.Errorf("unknown config format")
}