added reflectStruct

This commit is contained in:
2020-04-02 22:43:43 +00:00
parent d6499bb2c2
commit 145239c39e

View File

@ -14,3 +14,9 @@ type ConvOptions struct {
//NotificationsEnabled bool `json:"notifications_enabled,omitempty"` //NotificationsEnabled bool `json:"notifications_enabled,omitempty"`
CustomURL string `json:"custom_url,omitempty"` CustomURL string `json:"custom_url,omitempty"`
} }
// reflectStruct holds information about reflected structs!
type reflectStruct struct {
Name string
Value interface{}
}