From 15b741b19f9ef942be3b9d96de0098bb9fbe6a74 Mon Sep 17 00:00:00 2001 From: John Hooks Date: Mon, 5 Aug 2024 20:20:04 -0400 Subject: [PATCH] add response struct --- service/client.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/service/client.go b/service/client.go index c8f797d..c58efdc 100644 --- a/service/client.go +++ b/service/client.go @@ -22,6 +22,10 @@ type Request struct { Data []byte } +type SecretResponse struct { + Details string `json:"details"` +} + type ResponseError struct { Error string `json:"error"` }