server/queue/types/sms.go
Chang lue Tsen 8addcc584b init: 1.0.0
2025-04-25 12:08:29 +09:00

16 lines
304 B
Go

package types
const (
// ForthwithSendEmail forthwith send email
ForthwithSendSms = "forthwith:sms:send"
)
type (
SendSmsPayload struct {
Type uint8 `json:"type"`
Telephone string `json:"telephone"`
TelephoneArea string `json:"area"`
Content string `json:"content"`
}
)