refactor: correct JSON tag for Filename in FileAttachment struct
All checks were successful
🚀 Publish Release Package / publish (push) Successful in 32s

This commit is contained in:
2025-07-15 17:19:48 -04:00
parent af63421db1
commit 9820ab5132

View File

@@ -25,7 +25,7 @@ type Destination struct {
}
type FileAttachment struct {
Filename string `json:"Filename"`
Filename string `json:"FileName"`
Content string `json:"Content"`
}