A simple package that let's you send SMS messages using LT Labas mobile carrier's website.
You need to have an active LT Labas number registered on their website at mano.labas.lt.
go get -u github.com/sewiti/go-labas
package main
import labas "github.com/sewiti/go-labas"
func main() {
cl := labas.NewClient("+37000000000", "password")
if err := cl.SendSMS("+37000000000", "Hello World!"); err != nil {
log.Println(err)
}
}