2023-03-28 19:39:22 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-11-16 12:04:01 -06:00
|
|
|
//go:build !consulent
|
2020-02-04 13:58:56 -07:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
// enterpriseAgentToken OSS 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) {
|
|
|
|
}
|