Categorygithub.com/strfry/go-toxcore-c
repositorypackage
0.2.0
Repository: https://github.com/strfry/go-toxcore-c.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Build Status GoDoc

go-toxcore

The golang bindings for libtoxcore

Installation

go get github.com/kitech/go-toxcore

Examples

import "github.com/kitech/go-toxcore"

// 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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request