From 145239c39e958bd7204bc1476e0e3e61244edb45 Mon Sep 17 00:00:00 2001 From: David Haukeness Date: Thu, 2 Apr 2020 22:43:43 +0000 Subject: [PATCH] added reflectStruct --- types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types.go b/types.go index 063c9ca..d8c9a82 100644 --- a/types.go +++ b/types.go @@ -14,3 +14,9 @@ type ConvOptions struct { //NotificationsEnabled bool `json:"notifications_enabled,omitempty"` CustomURL string `json:"custom_url,omitempty"` } + +// reflectStruct holds information about reflected structs! +type reflectStruct struct { + Name string + Value interface{} +}