Initial commit

This commit is contained in:
phoenix
2025-11-14 13:21:36 -05:00
commit 9e0dccfd01
5 changed files with 33 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package send
import (
"fmt"
"git.kundeng.us/phoenix/textsender-models/pkg/contact"
)
type MessageSender struct {
Numbers []contact.Contact
}
func (m *MessageSender) Send() error {
if len(m.Numbers) == 0 {
return fmt.Errorf("No numbers to send")
}
return nil
}