2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2020-02-04 20:58:56 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package token
|
|
|
|
|
2020-08-27 17:15:10 +00:00
|
|
|
type EnterpriseConfig struct {
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:58:56 +00:00
|
|
|
// Stub for enterpriseTokens
|
|
|
|
type enterpriseTokens struct {
|
|
|
|
}
|
2020-04-28 13:44:26 +00:00
|
|
|
|
|
|
|
// enterpriseAgentToken OSS stub
|
2020-08-17 23:30:25 +00:00
|
|
|
func (t *Store) enterpriseAgentToken() string {
|
2020-04-28 13:44:26 +00:00
|
|
|
return ""
|
|
|
|
}
|
2020-08-17 23:30:25 +00:00
|
|
|
|
|
|
|
// loadEnterpriseTokens is a noop stub for the func defined agent_ent.go
|
|
|
|
func loadEnterpriseTokens(_ *Store, _ Config) {
|
|
|
|
}
|