open-nomad/client/enterprise_client_oss.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
510 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !ent
// +build !ent
package client
2020-05-28 19:43:16 +00:00
import hclog "github.com/hashicorp/go-hclog"
// 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 {
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) {}