Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 829 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 829 Bytes

go-labas

Go Reference Build

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.

Install

go get -u github.com/sewiti/go-labas

Example

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)
    }
}