open-consul/sentinel/sentinel_oss.go
Chris Piraino 3dd0b59793
Allow users to configure either unstructured or JSON logging (#7130)
* hclog Allow users to choose between unstructured and JSON logging
2020-01-28 17:50:41 -06:00

14 lines
283 B
Go

// +build !consulent
package sentinel
import (
"github.com/hashicorp/go-hclog"
)
// New returns a new instance of the Sentinel code engine. This is only available
// in Consul Enterprise so this version always returns nil.
func New(logger hclog.Logger) Evaluator {
return nil
}