mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
14 lines
227 B
Go
14 lines
227 B
Go
// +build !consulent
|
|
|
|
package agent
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func (s *HTTPHandlers) validateRequestPartition(_ http.ResponseWriter, _ *structs.EnterpriseMeta) bool {
|
|
return true
|
|
}
|