Switch to v3 of github.com/emicklei/go-restful

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
This commit is contained in:
Davanum Srinivas
2022-06-02 10:03:29 -04:00
parent 7c127b33da
commit ab690750df
119 changed files with 2365 additions and 319 deletions

12
vendor/github.com/emicklei/go-restful/v3/jsoniter.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +build jsoniter
package restful
import "github.com/json-iterator/go"
var (
json = jsoniter.ConfigCompatibleWithStandardLibrary
MarshalIndent = json.MarshalIndent
NewDecoder = json.NewDecoder
NewEncoder = json.NewEncoder
)