Browse Source

初步增加存储服务直传Feature

feature_wq
Sydonian 1 year ago
parent
commit
cd5331ecd5
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      sdks/storage/storage_feature.go

+ 10
- 0
sdks/storage/storage_feature.go View File

@@ -78,3 +78,13 @@ func (f *InternalServerlessCallFeature) GetFeatureType() string {
func (f *InternalServerlessCallFeature) String() string {
return "InternalServerlessCall"
}

// 存储服务之间直传文件
type S2SFeature struct {
serder.Metadata `union:"S2S"`
Type string `json:"type"`
}

func (f *S2SFeature) GetFeatureType() string {
return "S2S"
}

Loading…
Cancel
Save