ndevel / go-toxcore-c

The golang bindings for libtoxcore (Project Tox).

Home Page:https://toktok.ltd/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status GoDoc

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

  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

About

The golang bindings for libtoxcore (Project Tox).

https://toktok.ltd/

License:GNU General Public License v3.0


Languages

Language:Go 96.4%Language:C 2.3%Language:Starlark 1.3%