service/apollostruct/emailconfig.go

12 lines
222 B
Go
Raw Normal View History

2024-08-23 16:17:32 +08:00
package apollostruct
type EmailContentConfig struct {
Subject string `json:"subject"`
Text string `json:"text"`
}
type EmailInfoConfig struct {
Address string `json:"address"`
Password string `json:"password"`
}