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
|
2020-02-04 13:58:56 -07:00
|
|
|
|
|
|
|
package token
|
|
|
|
|
2020-08-27 13:15:10 -04:00
|
|
|
type EnterpriseConfig struct {
|
|
|
|
}
|
|
|
|
|
2020-02-04 13:58:56 -07:00
|
|
|
// Stub for enterpriseTokens
|
|
|
|
type enterpriseTokens struct {
|
|
|
|
}
|
2020-04-28 09:44:26 -04:00
|
|
|
|
2023-08-22 09:46:03 -05:00
|
|
|
// enterpriseAgentToken CE stub
|
2020-08-17 19:30:25 -04:00
|
|
|
func (t *Store) enterpriseAgentToken() string {
|
2020-04-28 09:44:26 -04:00
|
|
|
return ""
|
|
|
|
}
|
2020-08-17 19:30:25 -04:00
|
|
|
|
|
|
|
// loadEnterpriseTokens is a noop stub for the func defined agent_ent.go
|
|
|
|
func loadEnterpriseTokens(_ *Store, _ Config) {
|
|
|
|
}
|