The golang bindings for libtoxcore
go get -v gopkg.in/cotox/go-toxcore-c.v2import "gopkg.in/cotox/go-toxcore-c.v2"
// use custom options
opt := tox.NewToxOptions()
t := tox.NewTox(opt)
av := tox.NewToxAv(t)
// use default options
t := tox.NewTox(nil)
av := tox.NewToxAv(t)go test -v -covermode count- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request