mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +08:00
This change was made with the following commands
go mod init
go mod tidy
go mod vendor -v
Revision of github.com/op/go-logging changed because
github.com/anacrolix/torrent requires the current version in its go.mod
# github.com/op/go-logging
yunion.io/x/onecloud/cmd/torrent
github.com/anacrolix/torrent
github.com/elgatito/upnp
github.com/op/go-logging
Content of google.golang.org/grpc changed and it's indeed the case after
checking with the upstream repo. It's very likely that the old content
is wrong.
Some packages like golang.org/x/sys/unix are added because they are
indeeded needed
Some packages are removed as a whole because they are needed anymore
38 lines
883 B
Go
38 lines
883 B
Go
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package render
|
|
|
|
import "net/http"
|
|
|
|
type Render interface {
|
|
Render(http.ResponseWriter) error
|
|
WriteContentType(w http.ResponseWriter)
|
|
}
|
|
|
|
var (
|
|
_ Render = JSON{}
|
|
_ Render = IndentedJSON{}
|
|
_ Render = SecureJSON{}
|
|
_ Render = JsonpJSON{}
|
|
_ Render = XML{}
|
|
_ Render = String{}
|
|
_ Render = Redirect{}
|
|
_ Render = Data{}
|
|
_ Render = HTML{}
|
|
_ HTMLRender = HTMLDebug{}
|
|
_ HTMLRender = HTMLProduction{}
|
|
_ Render = YAML{}
|
|
_ Render = MsgPack{}
|
|
_ Render = Reader{}
|
|
_ Render = AsciiJSON{}
|
|
)
|
|
|
|
func writeContentType(w http.ResponseWriter, value []string) {
|
|
header := w.Header()
|
|
if val := header["Content-Type"]; len(val) == 0 {
|
|
header["Content-Type"] = value
|
|
}
|
|
}
|