From 7d6eb2f1a38e2265751cd61a43769959405866b4 Mon Sep 17 00:00:00 2001 From: s Date: Wed, 26 Nov 2025 09:06:15 -0500 Subject: feat: add debug flag to enable raw api response output --- cmd/helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/helpers.go') diff --git a/cmd/helpers.go b/cmd/helpers.go index f53f235..133fb0a 100644 --- a/cmd/helpers.go +++ b/cmd/helpers.go @@ -8,11 +8,11 @@ import ( ) func newClient() (*client.Client, error) { - return client.New(config.New()) + return client.New(config.New().WithDebug(debugOutput)) } func newUnauthenticatedClient() (*client.Client, error) { - return client.NewUnauthenticated(config.New()) + return client.NewUnauthenticated(config.New().WithDebug(debugOutput)) } func checkError(errorMsg string) error { -- cgit v1.2.3