mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
7a4c73acaf
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 ""
|
|
}
|