From 91933b798dbba584b1f3c5b76a0fac37a502a8de Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Sun, 1 May 2022 11:34:50 -0700 Subject: [PATCH] Run gofmt --- internal/types/types.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/types/types.go b/internal/types/types.go index ae09981..1bd3e2a 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -10,10 +10,10 @@ type Request struct { // Response represents a response returned by the server type Response struct { - ID string + ID string ChannelDone bool - IsChannel bool - IsError bool - Error string - Return any + IsChannel bool + IsError bool + Error string + Return any }