修复OSS stub

This commit is contained in:
刘祥超
2023-07-15 17:19:08 +08:00
parent 1fdce3ef7e
commit 0742dc963d

View File

@@ -9,7 +9,7 @@ import (
"net/http" "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 // stub
return nil, false, "", errors.New("not implemented") return nil, false, "", "", errors.New("not implemented")
} }