first commit

This commit is contained in:
2025-08-23 14:31:15 +02:00
commit ee11d4c818
3 changed files with 171 additions and 0 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"test/pkg/client"
)
func main() {
cli := client.New("172.0.0.42", 80)
if err := cli.SendSMS("0782092003", "salut toi comment tu vas ?"); err != nil {
panic(err)
}
}