10 lines
351 B
Go
10 lines
351 B
Go
// Package sms provides a swappable SMS sending abstraction for WhereWoof.
|
|
// The log sender is the default so development and tests never send real SMS.
|
|
package sms
|
|
|
|
// Sender sends an SMS to a destination number in international format
|
|
// (no leading '+', no leading zero — see NormalizeAU).
|
|
type Sender interface {
|
|
Send(to, body string) error
|
|
}
|