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