21 lines
371 B
Go
21 lines
371 B
Go
|
// +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)
|
||
|
}
|
||
|
|
||
|
}
|