driver_interface.go 129 B

1234567
  1. package sms
  2. type Driver interface {
  3. // Send 发送短信
  4. Send(phone string, message Message, config map[string]string) bool
  5. }