mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-18 21:09:38 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
31 lines
1.5 KiB
Go
31 lines
1.5 KiB
Go
package restful
|
|
|
|
// Copyright 2013 Ernest Micklei. All rights reserved.
|
|
// Use of this source code is governed by a license
|
|
// that can be found in the LICENSE file.
|
|
|
|
const (
|
|
MIME_XML = "application/xml" // Accept or Content-Type used in Consumes() and/or Produces()
|
|
MIME_JSON = "application/json" // Accept or Content-Type used in Consumes() and/or Produces()
|
|
MIME_OCTET = "application/octet-stream" // If Content-Type is not present in request, use the default
|
|
|
|
HEADER_Allow = "Allow"
|
|
HEADER_Accept = "Accept"
|
|
HEADER_Origin = "Origin"
|
|
HEADER_ContentType = "Content-Type"
|
|
HEADER_LastModified = "Last-Modified"
|
|
HEADER_AcceptEncoding = "Accept-Encoding"
|
|
HEADER_ContentEncoding = "Content-Encoding"
|
|
HEADER_AccessControlExposeHeaders = "Access-Control-Expose-Headers"
|
|
HEADER_AccessControlRequestMethod = "Access-Control-Request-Method"
|
|
HEADER_AccessControlRequestHeaders = "Access-Control-Request-Headers"
|
|
HEADER_AccessControlAllowMethods = "Access-Control-Allow-Methods"
|
|
HEADER_AccessControlAllowOrigin = "Access-Control-Allow-Origin"
|
|
HEADER_AccessControlAllowCredentials = "Access-Control-Allow-Credentials"
|
|
HEADER_AccessControlAllowHeaders = "Access-Control-Allow-Headers"
|
|
HEADER_AccessControlMaxAge = "Access-Control-Max-Age"
|
|
|
|
ENCODING_GZIP = "gzip"
|
|
ENCODING_DEFLATE = "deflate"
|
|
)
|