修复一处编译问题

This commit is contained in:
GoEdgeLab
2023-06-07 20:30:52 +08:00
parent 2f77137b89
commit c782d92332

View File

@@ -11,5 +11,5 @@ import (
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, err error) {
// stub // stub
return nil, errors.New("not implemented") return nil, false, errors.New("not implemented")
} }