gotty/vendor/github.com/yudai/hcl/parse.go
2016-04-13 16:17:57 +09:00

23 lines
419 B
Go

package hcl
import (
"fmt"
"github.com/yudai/hcl/hcl"
"github.com/yudai/hcl/json"
)
// Parse parses the given input and returns the root object.
//
// The input format can be either HCL or JSON.
func Parse(input string) (*hcl.Object, error) {
switch lexMode(input) {
case lexModeHcl:
return hcl.Parse(input)
case lexModeJson:
return json.Parse(input)
}
return nil, fmt.Errorf("unknown config format")
}