2023-03-28 18:39:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 13:12:13 +00:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 18:39:22 +00:00
|
|
|
|
2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2021-05-17 20:01:32 +00:00
|
|
|
|
|
|
|
package autoconf
|
|
|
|
|
2023-08-22 14:46:03 +00:00
|
|
|
// AutoConfigEnterprise has no fields in CE
|
2021-05-17 20:01:32 +00:00
|
|
|
type AutoConfigEnterprise struct{}
|
|
|
|
|
|
|
|
// newAutoConfigEnterprise initializes the enterprise AutoConfig struct
|
|
|
|
func newAutoConfigEnterprise(config Config) AutoConfigEnterprise {
|
|
|
|
return AutoConfigEnterprise{}
|
|
|
|
}
|