1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

fix(net/ghttp): handle error from RegisterTypeConverterFunc in init function

This commit is contained in:
hailaz 2025-03-14 15:17:47 +08:00
parent 9c174c1bc5
commit 937a8278a8

View File

@ -25,7 +25,7 @@ import (
// init initializes the type converters for *UploadFile.
func init() {
gconv.RegisterTypeConverterFunc(stringToUploadFile)
_ = gconv.RegisterTypeConverterFunc(stringToUploadFile)
}
// UploadFile wraps the multipart uploading file with more and convenient features.