初始化框架

This commit is contained in:
Yun
2026-03-09 11:44:51 +08:00
commit 4337dc74e4
8 changed files with 294 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package tencent
import (
"code.yun.ink/pkg/storagex"
)
type TencentFactory struct{}
func (f *TencentFactory) Create(cfg storagex.Config) (storagex.Uploader, error) {
return &TencentUploader{}, nil
}
type TencentUploader struct {
storagex.UploaderImpl
}