Skip to content

darthlukan/libbring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LibBring v1.0

Build Status

Author: Brian Tomlinson brian.tomlinson@linux.com

Description

LibBring is a Go wrapper for some of the most commonly used functions of the Bring API located at http://developer.bring.com.

Usage

Example:

    package main

    import (
        "fmt"
        "github.com/darthlukan/libbring"
    )

    func main() {

        data, err := libbring.Track("TESTPACKAGE-AT-PICKUPPOINT")

        if err != nil {
            panic(err)
        }

        fmt.Printf("Tracking info: %v", data)
    }

For more information on how to use this library, see the code in libbring/libbring.go, the functions in that file are very much self-explanatory. Bring API Documentation.

License

The Go code in this repo falls under GPLv2, see the LICENSE file. The Bring API itself falls under separate licensing conditions but is provided free of charge. For more information, visit their developer site.

About

LibBring is a Go wrapper for some of the most commonly used functions of the Bring API located at http://developer.bring.com.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages