瀏覽代碼

feat(components): added comment to MessageComponentFromJSON

nitroflap 3 年之前
父節點
當前提交
0494cdf33c
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      components.go

+ 1 - 0
components.go

@@ -51,6 +51,7 @@ func (umc *unmarshalableMessageComponent) UnmarshalJSON(src []byte) error {
 	return json.Unmarshal(src, umc.MessageComponent)
 }
 
+// MessageComponentFromJSON is a helper function for unmarshaling message components
 func MessageComponentFromJSON(b []byte) (MessageComponent, error) {
 	var u unmarshalableMessageComponent
 	err := u.UnmarshalJSON(b)