初步实现对象存储源站

This commit is contained in:
刘祥超
2023-06-07 17:26:34 +08:00
parent 555673b87d
commit b08064c1de
11 changed files with 357 additions and 171 deletions

View File

@@ -0,0 +1,9 @@
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
package ossconfigs
type OSSOptions interface {
Init() error // 初始化
Summary() string // 内容简述
UniqueId() string // 唯一标识
}