diff --git a/infra/conf/transport_method.go b/infra/conf/transport_method.go index f6ae7ff74..93cf9ddad 100644 --- a/infra/conf/transport_method.go +++ b/infra/conf/transport_method.go @@ -794,3 +794,9 @@ func readFileOrString(f string, s []string) ([]byte, error) { } return nil, errors.New("both file and bytes are empty.") } + +type XDriveConfig struct { + RemoteFolder string `json:"remoteFolder"` + Service string `json:"service"` + Secrets []string `json:"secrets"` +}