mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
10 lines
120 B
Go
10 lines
120 B
Go
package storage
|
|
|
|
import "testing"
|
|
|
|
func TestS3(t *testing.T) {
|
|
s3, err := NewS3(S3Config{
|
|
Region: "us-west-1",
|
|
})
|
|
}
|