scan-flow: geolocation scan, location-aware SMS throttle (log sender), finder contact, sms_enabled toggle, branding — 19/19 phase-2 scenarios pass

This commit is contained in:
2026-08-05 18:23:34 +10:00
parent 4666751e92
commit c2fa04afd0
26 changed files with 698 additions and 43 deletions

View File

@@ -0,0 +1,9 @@
// 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
}