10 changed files with 614 additions and 3 deletions
-
39bucket_domain.go
-
113bucket_domain_test.go
-
59bucket_website.go
-
166bucket_website_test.go
-
40costesting/ci_test.go
-
35example/bucket/delWebsite.go
-
35example/bucket/getDomain.go
-
35example/bucket/getWebsite.go
-
42example/bucket/putDomain.go
-
53example/bucket/putWebsite.go
@ -0,0 +1,39 @@ |
|||||
|
package cos |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"encoding/xml" |
||||
|
"net/http" |
||||
|
) |
||||
|
|
||||
|
type BucketPutDomainOptions struct { |
||||
|
XMLName xml.Name `xml:"DomainConfiguration"` |
||||
|
Status string `xml:"DomainRule>Status,omitempty"` |
||||
|
Name string `xml:"DomainRule>Name,omitempty"` |
||||
|
Type string `xml:"DomainRule>Type,omitempty"` |
||||
|
ForcedReplacement string `xml:"DomainRule>ForcedReplacement,omitempty"` |
||||
|
} |
||||
|
type BucketGetDomainResult BucketPutDomainOptions |
||||
|
|
||||
|
func (s *BucketService) PutDomain(ctx context.Context, opt *BucketPutDomainOptions) (*Response, error) { |
||||
|
sendOpt := &sendOptions{ |
||||
|
baseURL: s.client.BaseURL.BucketURL, |
||||
|
uri: "/?domain", |
||||
|
method: http.MethodPut, |
||||
|
body: opt, |
||||
|
} |
||||
|
resp, err := s.client.send(ctx, sendOpt) |
||||
|
return resp, err |
||||
|
} |
||||
|
|
||||
|
func (s *BucketService) GetDomain(ctx context.Context) (*BucketGetDomainResult, *Response, error) { |
||||
|
var res BucketGetDomainResult |
||||
|
sendOpt := &sendOptions{ |
||||
|
baseURL: s.client.BaseURL.BucketURL, |
||||
|
uri: "/?domain", |
||||
|
method: http.MethodGet, |
||||
|
result: &res, |
||||
|
} |
||||
|
resp, err := s.client.send(ctx, sendOpt) |
||||
|
return &res, resp, err |
||||
|
} |
@ -0,0 +1,113 @@ |
|||||
|
package cos |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"encoding/xml" |
||||
|
"fmt" |
||||
|
"net/http" |
||||
|
"reflect" |
||||
|
"testing" |
||||
|
) |
||||
|
|
||||
|
func TestBucketService_GetDomain(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, "GET") |
||||
|
vs := values{ |
||||
|
"domain": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
fmt.Fprint(w, `<DomainConfiguration> |
||||
|
<DomainRule> |
||||
|
<Status>ENABLED</Status> |
||||
|
<Name>www.abc.com</Name> |
||||
|
<Type>REST</Type> |
||||
|
<ForcedReplacement>CNAME</ForcedReplacement> |
||||
|
</DomainRule> |
||||
|
</DomainConfiguration>`) |
||||
|
}) |
||||
|
|
||||
|
res, _, err := client.Bucket.GetDomain(context.Background()) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.GetDomain returned error %v", err) |
||||
|
} |
||||
|
|
||||
|
want := &BucketGetDomainResult{ |
||||
|
XMLName: xml.Name{Local: "DomainConfiguration"}, |
||||
|
Status: "ENABLED", |
||||
|
Name: "www.abc.com", |
||||
|
Type: "REST", |
||||
|
ForcedReplacement: "CNAME", |
||||
|
} |
||||
|
|
||||
|
if !reflect.DeepEqual(res, want) { |
||||
|
t.Errorf("Bucket.GetDomain returned %+v, want %+v", res, want) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
func TestBucketService_PutDomain(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
opt := &BucketPutDomainOptions{ |
||||
|
XMLName: xml.Name{Local: "DomainConfiguration"}, |
||||
|
Status: "ENABLED", |
||||
|
Name: "www.abc.com", |
||||
|
Type: "REST", |
||||
|
ForcedReplacement: "CNAME", |
||||
|
} |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, "PUT") |
||||
|
vs := values{ |
||||
|
"domain": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
|
||||
|
body := new(BucketPutDomainOptions) |
||||
|
xml.NewDecoder(r.Body).Decode(body) |
||||
|
want := opt |
||||
|
want.XMLName = xml.Name{Local: "DomainConfiguration"} |
||||
|
if !reflect.DeepEqual(body, want) { |
||||
|
t.Errorf("Bucket.PutDomain request\n body: %+v\n, want %+v\n", body, want) |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
_, err := client.Bucket.PutDomain(context.Background(), opt) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.PutDomain returned error: %v", err) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
func TestBucketService_DeleteDomain(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
opt := &BucketPutDomainOptions{} |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, http.MethodPut) |
||||
|
vs := values{ |
||||
|
"domain": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
|
||||
|
body := new(BucketPutDomainOptions) |
||||
|
xml.NewDecoder(r.Body).Decode(body) |
||||
|
want := opt |
||||
|
want.XMLName = xml.Name{Local: "DomainConfiguration"} |
||||
|
if !reflect.DeepEqual(body, want) { |
||||
|
t.Errorf("Bucket.PutDomain request\n body: %+v\n, want %+v\n", body, want) |
||||
|
} |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
}) |
||||
|
|
||||
|
_, err := client.Bucket.PutDomain(context.Background(), opt) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.PutDomain returned error: %v", err) |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,59 @@ |
|||||
|
package cos |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"encoding/xml" |
||||
|
"net/http" |
||||
|
) |
||||
|
|
||||
|
type WebsiteRoutingRule struct { |
||||
|
ConditionErrorCode string `xml:"Condition>HttpErrorCodeReturnedEquals,omitempty"` |
||||
|
ConditionPrefix string `xml:"Condition>KeyPrefixEquals,omitempty"` |
||||
|
|
||||
|
RedirectProtocol string `xml:"Redirect>Protocol,omitempty"` |
||||
|
RedirectReplaceKey string `xml:"Redirect>ReplaceKeyWith,omitempty"` |
||||
|
RedirectReplaceKeyPrefix string `xml:"Redirect>ReplaceKeyPrefixWith,omitempty"` |
||||
|
} |
||||
|
|
||||
|
type BucketPutWebsiteOptions struct { |
||||
|
XMLName xml.Name `xml:"WebsiteConfiguration"` |
||||
|
Index string `xml:"IndexDocument>Suffix"` |
||||
|
RedirectProtocol string `xml:"RedirectAllRequestsTo>Protocol,omitempty"` |
||||
|
Error string `xml:"ErrorDocument>Key,omitempty"` |
||||
|
Rules []WebsiteRoutingRule `xml:"RoutingRules>RoutingRule,omitempty"` |
||||
|
} |
||||
|
|
||||
|
type BucketGetWebsiteResult BucketPutWebsiteOptions |
||||
|
|
||||
|
func (s *BucketService) PutWebsite(ctx context.Context, opt *BucketPutWebsiteOptions) (*Response, error) { |
||||
|
sendOpt := &sendOptions{ |
||||
|
baseURL: s.client.BaseURL.BucketURL, |
||||
|
uri: "/?website", |
||||
|
method: http.MethodPut, |
||||
|
body: opt, |
||||
|
} |
||||
|
resp, err := s.client.send(ctx, sendOpt) |
||||
|
return resp, err |
||||
|
} |
||||
|
|
||||
|
func (s *BucketService) GetWebsite(ctx context.Context) (*BucketGetWebsiteResult, *Response, error) { |
||||
|
var res BucketGetWebsiteResult |
||||
|
sendOpt := &sendOptions{ |
||||
|
baseURL: s.client.BaseURL.BucketURL, |
||||
|
uri: "/?website", |
||||
|
method: http.MethodGet, |
||||
|
result: &res, |
||||
|
} |
||||
|
resp, err := s.client.send(ctx, sendOpt) |
||||
|
return &res, resp, err |
||||
|
} |
||||
|
|
||||
|
func (s *BucketService) DeleteWebsite(ctx context.Context) (*Response, error) { |
||||
|
sendOpt := &sendOptions{ |
||||
|
baseURL: s.client.BaseURL.BucketURL, |
||||
|
uri: "/?website", |
||||
|
method: http.MethodDelete, |
||||
|
} |
||||
|
resp, err := s.client.send(ctx, sendOpt) |
||||
|
return resp, err |
||||
|
} |
@ -0,0 +1,166 @@ |
|||||
|
package cos |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"encoding/xml" |
||||
|
"fmt" |
||||
|
"net/http" |
||||
|
"reflect" |
||||
|
"testing" |
||||
|
) |
||||
|
|
||||
|
func TestBucketService_GetWebsite(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, "GET") |
||||
|
vs := values{ |
||||
|
"website": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
fmt.Fprint(w, `<WebsiteConfiguration> |
||||
|
<IndexDocument> |
||||
|
<Suffix>index.html</Suffix> |
||||
|
</IndexDocument> |
||||
|
<RedirectAllRequestsTo> |
||||
|
<Protocol>https</Protocol> |
||||
|
</RedirectAllRequestsTo> |
||||
|
<ErrorDocument> |
||||
|
<Key>Error.html</Key> |
||||
|
</ErrorDocument> |
||||
|
<RoutingRules> |
||||
|
<RoutingRule> |
||||
|
<Condition> |
||||
|
<HttpErrorCodeReturnedEquals>404</HttpErrorCodeReturnedEquals> |
||||
|
</Condition> |
||||
|
<Redirect> |
||||
|
<Protocol>https</Protocol> |
||||
|
<ReplaceKeyWith>404.html</ReplaceKeyWith> |
||||
|
</Redirect> |
||||
|
</RoutingRule> |
||||
|
<RoutingRule> |
||||
|
<Condition> |
||||
|
<KeyPrefixEquals>docs/</KeyPrefixEquals> |
||||
|
</Condition> |
||||
|
<Redirect> |
||||
|
<Protocol>https</Protocol> |
||||
|
<ReplaceKeyPrefixWith>documents/</ReplaceKeyPrefixWith> |
||||
|
</Redirect> |
||||
|
</RoutingRule> |
||||
|
<RoutingRule> |
||||
|
<Condition> |
||||
|
<KeyPrefixEquals>img/</KeyPrefixEquals> |
||||
|
</Condition> |
||||
|
<Redirect> |
||||
|
<Protocol>https</Protocol> |
||||
|
<ReplaceKeyWith>demo.jpg</ReplaceKeyWith> |
||||
|
</Redirect> |
||||
|
</RoutingRule> |
||||
|
</RoutingRules> |
||||
|
</WebsiteConfiguration>`) |
||||
|
}) |
||||
|
|
||||
|
res, _, err := client.Bucket.GetWebsite(context.Background()) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.GetWebsite returned error %v", err) |
||||
|
} |
||||
|
|
||||
|
want := &BucketGetWebsiteResult{ |
||||
|
XMLName: xml.Name{Local: "WebsiteConfiguration"}, |
||||
|
Index: "index.html", |
||||
|
RedirectProtocol: "https", |
||||
|
Error: "Error.html", |
||||
|
Rules: []WebsiteRoutingRule{ |
||||
|
{ |
||||
|
ConditionErrorCode: "404", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKey: "404.html", |
||||
|
}, |
||||
|
{ |
||||
|
ConditionPrefix: "docs/", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKeyPrefix: "documents/", |
||||
|
}, |
||||
|
{ |
||||
|
ConditionPrefix: "img/", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKey: "demo.jpg", |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
if !reflect.DeepEqual(res, want) { |
||||
|
t.Errorf("Bucket.GetWebsite returned %+v, want %+v", res, want) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
func TestBucketService_PutWebsite(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
opt := &BucketPutWebsiteOptions{ |
||||
|
Index: "index.html", |
||||
|
RedirectProtocol: "https", |
||||
|
Error: "Error.html", |
||||
|
Rules: []WebsiteRoutingRule{ |
||||
|
{ |
||||
|
ConditionErrorCode: "404", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKey: "404.html", |
||||
|
}, |
||||
|
{ |
||||
|
ConditionPrefix: "docs/", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKeyPrefix: "documents/", |
||||
|
}, |
||||
|
{ |
||||
|
ConditionPrefix: "img/", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKey: "demo.jpg", |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, "PUT") |
||||
|
vs := values{ |
||||
|
"website": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
|
||||
|
body := new(BucketPutWebsiteOptions) |
||||
|
xml.NewDecoder(r.Body).Decode(body) |
||||
|
want := opt |
||||
|
want.XMLName = xml.Name{Local: "WebsiteConfiguration"} |
||||
|
if !reflect.DeepEqual(body, want) { |
||||
|
t.Errorf("Bucket.PutWebsite request\n body: %+v\n, want %+v\n", body, want) |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
_, err := client.Bucket.PutWebsite(context.Background(), opt) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.PutWebsite returned error: %v", err) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
func TestBucketService_DeleteWebsite(t *testing.T) { |
||||
|
setup() |
||||
|
defer teardown() |
||||
|
|
||||
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
||||
|
testMethod(t, r, http.MethodDelete) |
||||
|
vs := values{ |
||||
|
"website": "", |
||||
|
} |
||||
|
testFormValues(t, r, vs) |
||||
|
|
||||
|
w.WriteHeader(http.StatusNoContent) |
||||
|
}) |
||||
|
|
||||
|
_, err := client.Bucket.DeleteWebsite(context.Background()) |
||||
|
if err != nil { |
||||
|
t.Fatalf("Bucket.DeleteWebsite returned error: %v", err) |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,35 @@ |
|||||
|
package main |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"net/http" |
||||
|
"net/url" |
||||
|
"os" |
||||
|
|
||||
|
"github.com/tencentyun/cos-go-sdk-v5" |
||||
|
"github.com/tencentyun/cos-go-sdk-v5/debug" |
||||
|
) |
||||
|
|
||||
|
func main() { |
||||
|
u, _ := url.Parse("https://test-1259654469.cos.ap-guangzhou.myqcloud.com") |
||||
|
b := &cos.BaseURL{ |
||||
|
BucketURL: u, |
||||
|
} |
||||
|
c := cos.NewClient(b, &http.Client{ |
||||
|
Transport: &cos.AuthorizationTransport{ |
||||
|
SecretID: os.Getenv("COS_SECRETID"), |
||||
|
SecretKey: os.Getenv("COS_SECRETKEY"), |
||||
|
Transport: &debug.DebugRequestTransport{ |
||||
|
RequestHeader: true, |
||||
|
RequestBody: true, |
||||
|
ResponseHeader: true, |
||||
|
ResponseBody: true, |
||||
|
}, |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
_, err := c.Bucket.DeleteWebsite(context.Background()) |
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
} |
@ -0,0 +1,35 @@ |
|||||
|
package main |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"net/http" |
||||
|
"net/url" |
||||
|
"os" |
||||
|
|
||||
|
"github.com/tencentyun/cos-go-sdk-v5" |
||||
|
"github.com/tencentyun/cos-go-sdk-v5/debug" |
||||
|
) |
||||
|
|
||||
|
func main() { |
||||
|
u, _ := url.Parse("https://test-1259654469.cos.ap-guangzhou.myqcloud.com") |
||||
|
b := &cos.BaseURL{ |
||||
|
BucketURL: u, |
||||
|
} |
||||
|
c := cos.NewClient(b, &http.Client{ |
||||
|
Transport: &cos.AuthorizationTransport{ |
||||
|
SecretID: os.Getenv("COS_SECRETID"), |
||||
|
SecretKey: os.Getenv("COS_SECRETKEY"), |
||||
|
Transport: &debug.DebugRequestTransport{ |
||||
|
RequestHeader: true, |
||||
|
RequestBody: true, |
||||
|
ResponseHeader: true, |
||||
|
ResponseBody: true, |
||||
|
}, |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
_, _, err := c.Bucket.GetDomain(context.Background()) |
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
} |
@ -0,0 +1,35 @@ |
|||||
|
package main |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"net/http" |
||||
|
"net/url" |
||||
|
"os" |
||||
|
|
||||
|
"github.com/tencentyun/cos-go-sdk-v5" |
||||
|
"github.com/tencentyun/cos-go-sdk-v5/debug" |
||||
|
) |
||||
|
|
||||
|
func main() { |
||||
|
u, _ := url.Parse("https://test-1259654469.cos.ap-guangzhou.myqcloud.com") |
||||
|
b := &cos.BaseURL{ |
||||
|
BucketURL: u, |
||||
|
} |
||||
|
c := cos.NewClient(b, &http.Client{ |
||||
|
Transport: &cos.AuthorizationTransport{ |
||||
|
SecretID: os.Getenv("COS_SECRETID"), |
||||
|
SecretKey: os.Getenv("COS_SECRETKEY"), |
||||
|
Transport: &debug.DebugRequestTransport{ |
||||
|
RequestHeader: true, |
||||
|
RequestBody: true, |
||||
|
ResponseHeader: true, |
||||
|
ResponseBody: true, |
||||
|
}, |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
_, _, err := c.Bucket.GetWebsite(context.Background()) |
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
} |
@ -0,0 +1,42 @@ |
|||||
|
package main |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"net/http" |
||||
|
"net/url" |
||||
|
"os" |
||||
|
|
||||
|
"github.com/tencentyun/cos-go-sdk-v5" |
||||
|
"github.com/tencentyun/cos-go-sdk-v5/debug" |
||||
|
) |
||||
|
|
||||
|
func main() { |
||||
|
u, _ := url.Parse("https://test-1259654469.cos.ap-guangzhou.myqcloud.com") |
||||
|
b := &cos.BaseURL{ |
||||
|
BucketURL: u, |
||||
|
} |
||||
|
c := cos.NewClient(b, &http.Client{ |
||||
|
Transport: &cos.AuthorizationTransport{ |
||||
|
SecretID: os.Getenv("COS_SECRETID"), |
||||
|
SecretKey: os.Getenv("COS_SECRETKEY"), |
||||
|
Transport: &debug.DebugRequestTransport{ |
||||
|
RequestHeader: true, |
||||
|
RequestBody: true, |
||||
|
ResponseHeader: true, |
||||
|
ResponseBody: true, |
||||
|
}, |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
opt := &cos.BucketPutDomainOptions{ |
||||
|
Status: "ENABLED", |
||||
|
Name: "www.abc.com", |
||||
|
Type: "REST", |
||||
|
ForcedReplacement: "CNAME", |
||||
|
} |
||||
|
|
||||
|
_, err := c.Bucket.PutDomain(context.Background(), opt) |
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
} |
@ -0,0 +1,53 @@ |
|||||
|
package main |
||||
|
|
||||
|
import ( |
||||
|
"context" |
||||
|
"net/http" |
||||
|
"net/url" |
||||
|
"os" |
||||
|
|
||||
|
"github.com/tencentyun/cos-go-sdk-v5" |
||||
|
"github.com/tencentyun/cos-go-sdk-v5/debug" |
||||
|
) |
||||
|
|
||||
|
func main() { |
||||
|
u, _ := url.Parse("https://test-1259654469.cos.ap-guangzhou.myqcloud.com") |
||||
|
b := &cos.BaseURL{ |
||||
|
BucketURL: u, |
||||
|
} |
||||
|
c := cos.NewClient(b, &http.Client{ |
||||
|
Transport: &cos.AuthorizationTransport{ |
||||
|
SecretID: os.Getenv("COS_SECRETID"), |
||||
|
SecretKey: os.Getenv("COS_SECRETKEY"), |
||||
|
Transport: &debug.DebugRequestTransport{ |
||||
|
RequestHeader: true, |
||||
|
RequestBody: true, |
||||
|
ResponseHeader: true, |
||||
|
ResponseBody: true, |
||||
|
}, |
||||
|
}, |
||||
|
}) |
||||
|
|
||||
|
opt := &cos.BucketPutWebsiteOptions{ |
||||
|
Index: "index.html", |
||||
|
Error: "index_backup.html", |
||||
|
RedirectProtocol: "https", |
||||
|
Rules: []cos.WebsiteRoutingRule{ |
||||
|
{ |
||||
|
ConditionErrorCode: "404", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKey: "404.html", |
||||
|
}, |
||||
|
{ |
||||
|
ConditionPrefix: "docs/", |
||||
|
RedirectProtocol: "https", |
||||
|
RedirectReplaceKeyPrefix: "documents/", |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
_, err := c.Bucket.PutWebsite(context.Background(), opt) |
||||
|
if err != nil { |
||||
|
panic(err) |
||||
|
} |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue