规范化插件代码

This commit is contained in:
蒋吉兆
2021-08-28 12:38:26 +08:00
parent f5e0268d0f
commit 5964d70023
9 changed files with 187 additions and 26 deletions
@@ -0,0 +1,7 @@
package response
type Email struct {
To string `json:"to"` // 邮件发送给谁
Subject string `json:"subject"` // 邮件标题
Body string `json:"body"` // 邮件内容
}