From f6a0e82c39b271e7f5e6f0bb7a18c2a4564fd18c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=BC=9F=E4=B9=90?= Date: Tue, 14 Mar 2023 14:00:27 +0800 Subject: [PATCH] x --- encoding/encoding.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/encoding/encoding.go b/encoding/encoding.go index f9defe6..3ecdc33 100644 --- a/encoding/encoding.go +++ b/encoding/encoding.go @@ -1,6 +1,7 @@ package encoding import ( + "fmt" "strings" ) @@ -38,5 +39,6 @@ func RegisterCodec(codec Codec) { // // The content-subtype is expected to be lowercase. func GetCodec(contentSubtype string) Codec { + fmt.Println("xx", contentSubtype) return registeredCodecs[contentSubtype] }