package oss_utils import ( "context" "property-device/pb" pb_v1 "property-device/pb/v1" ) func OssObjAdd(inList []string, outList []string) error { mreq := pb_v1.OssObjAddRequest{InList: inList, OutList: outList} _, err := pb.Common.OssObjAdd(context.Background(), &mreq) return err }