From 6ab2ccf3a661ac7c6169c91608a88ce9d792f43e Mon Sep 17 00:00:00 2001 From: LG Date: Mon, 21 Jul 2025 19:55:14 -0300 Subject: [PATCH] Fix identation --- internal/storage/googledrive/googledrive.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/storage/googledrive/googledrive.go b/internal/storage/googledrive/googledrive.go index aca66e2..790dd61 100644 --- a/internal/storage/googledrive/googledrive.go +++ b/internal/storage/googledrive/googledrive.go @@ -37,8 +37,8 @@ type Config struct { // NewStorageBackend creates and initializes a new Google Drive storage backend. func NewStorageBackend(opts Config, logFunc storage.Log) (storage.Backend, error) { -ctx := context.Background() -b, err := os.ReadFile(opts.CredentialsJSON) + ctx := context.Background() + b, err := os.ReadFile(opts.CredentialsJSON) if err != nil { return nil, errwrap.Wrap(err, "unable to read credentials") }