优化OSS相关代码

This commit is contained in:
GoEdgeLab
2023-06-08 17:47:04 +08:00
parent 58b7bbfbb5
commit 3a819ca7cf
2 changed files with 15 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ import (
"net/http"
)
func (this *HTTPRequest) doOSSOrigin(origin *serverconfigs.OriginConfig) (resp *http.Response, goNext bool, err error) {
func (this *HTTPRequest) doOSSOrigin(origin *serverconfigs.OriginConfig) (resp *http.Response, goNext bool, errorCode string, err error) {
// stub
return nil, false, errors.New("not implemented")
return nil, false, "", errors.New("not implemented")
}