初步实现对象存储源站

This commit is contained in:
刘祥超
2023-06-07 17:27:55 +08:00
parent 7bd7f7da45
commit 9b22e6cf69
2 changed files with 113 additions and 76 deletions

View File

@@ -0,0 +1,15 @@
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
//go:build !plus
package nodes
import (
"errors"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
"net/http"
)
func (this *HTTPRequest) doOSSOrigin(origin *serverconfigs.OriginConfig) (*http.Response, error) {
// stub
return nil, errors.New("not implemented")
}