修复OSS stub

This commit is contained in:
GoEdgeLab
2023-07-15 17:19:08 +08:00
parent 4f8d77d495
commit f92e3eda3c

View File

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