From 953f82d46e507beacdaf8bc6a5e63e363136fa53 Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Fri, 11 Sep 2026 00:19:43 +0000 Subject: [PATCH] init --- infra/conf/transport_method.go | 6 ++++++ 1 file changed, 6 insertions(+) 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"` +}