# README
go-toxcore
The golang bindings for libtoxcore
Installation
# fetch libtoxcore if necessary
# see https://github.com/TokTok/c-toxcore/blob/master/INSTALL.md
go get github.com/TokTok/go-toxcore-c
Examples
import "github.com/TokTok/go-toxcore-c"
// 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)
Tests
go test -v -covermode count
Contributing
- 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
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author