2023-04-10 15:36:59 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-10-01 13:59:55 +00:00
|
|
|
//go:build !ent
|
2020-05-27 17:46:52 +00:00
|
|
|
// +build !ent
|
|
|
|
|
|
|
|
package client
|
|
|
|
|
2020-05-28 19:43:16 +00:00
|
|
|
import hclog "github.com/hashicorp/go-hclog"
|
|
|
|
|
2020-05-27 17:46:52 +00:00
|
|
|
// EnterpriseClient holds information and methods for enterprise functionality
|
|
|
|
type EnterpriseClient struct{}
|
|
|
|
|
2020-05-28 19:43:16 +00:00
|
|
|
func newEnterpriseClient(logger hclog.Logger) *EnterpriseClient {
|
2020-05-27 17:46:52 +00:00
|
|
|
return &EnterpriseClient{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetFeatures is used for enterprise builds to configure enterprise features
|
2020-12-09 19:05:18 +00:00
|
|
|
func (ec *EnterpriseClient) SetFeatures(features uint64) {}
|