Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 944 Bytes

README.md

File metadata and controls

45 lines (27 loc) · 944 Bytes

gowall

A simple Go implementation of the Coderwall API (http://coderwall.com/api).

Current build status:

Getting the Code

go get github.com/NickPresta/go-wall/gowall

Usage

Import this library in your code to use it:

import (
    "github.com/NickPresta/go-wall/gowall"
)

Fetch your user details:

user, err := gowall.FetchUser("NickPresta")
/* Do something with user */

See main.go for an example.

Documentation

View the documentation on GoPkgDoc.

Tests

A very simple test is available via go test.

Changelog

See CHANGELOG.md for details.

License

This is released under the MIT license. See LICENSE.md for details.