fbb5c28c80
This is needed to allow for managed Consul instances to register themselves in the catalog with one of the managed service provider tokens.
13 lines
194 B
Go
13 lines
194 B
Go
// +build !consulent
|
|
|
|
package token
|
|
|
|
// Stub for enterpriseTokens
|
|
type enterpriseTokens struct {
|
|
}
|
|
|
|
// enterpriseAgentToken OSS stub
|
|
func (s *Store) enterpriseAgentToken() string {
|
|
return ""
|
|
}
|