All Projects → TokTok → go-toxcore-c

TokTok / go-toxcore-c

Licence: GPL-3.0 license
The golang bindings for libtoxcore (Project Tox).

Labels

Projects that are alternatives of or similar to go-toxcore-c

ToxBlinkenwall
ToxBlinkenwall - VideoConferencing with Tox
Stars: ✭ 16 (-68.63%)
Mutual labels:  toxcore
rustybot
A Tox groupchat trivia bot
Stars: ✭ 13 (-74.51%)
Mutual labels:  toxcore
c-toxcore
The future of online communications.
Stars: ✭ 1,730 (+3292.16%)
Mutual labels:  toxcore
spec
Tox Protocol Specification
Stars: ✭ 29 (-43.14%)
Mutual labels:  toxcore
jvm-toxcore-c
JVM (Java/Scala/Kotlin) bindings to toxcore
Stars: ✭ 33 (-35.29%)
Mutual labels:  toxcore
minitox
Minimal client for Tox
Stars: ✭ 65 (+27.45%)
Mutual labels:  toxcore
pytoxcore
Python binding for ToxCore
Stars: ✭ 37 (-27.45%)
Mutual labels:  toxcore

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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].