22 lines
387 B
Go
22 lines
387 B
Go
//go:build !ent
|
|
// +build !ent
|
|
|
|
package agent
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (s *HTTPServer) LicenseRequest(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
switch req.Method {
|
|
case "GET":
|
|
resp.WriteHeader(http.StatusNoContent)
|
|
return nil, nil
|
|
case "PUT":
|
|
return nil, CodedError(501, ErrEntOnly)
|
|
default:
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
}
|
|
|
|
}
|