Skip to content
Dusty Wilson edited this page May 30, 2016 · 1 revision

This repository provides files for the Bumble Router/Client libraries for Go that are common to both router and client code, such as types, structs, constants, and any methods/functions related to those items.

== Installation ==

You may omit any of the packages below if you do not intend to use them. {{{go get}}} will fetch them anyway if they are a dependency.

{{{ go get bumbleserver.org/common/envelope go get bumbleserver.org/common/key go get bumbleserver.org/common/message go get bumbleserver.org/common/peer go get bumbleserver.org/common/session go get bumbleserver.org/common/util }}}

== Usage ==

To use this library in your code, use "{{{bumbleserver.org/common/_____}}}" as the import path as shown below. You may omit the packages that you will not be using from the import list.

{{{ import ( "bumbleserver.org/common/envelope" "bumbleserver.org/common/key" "bumbleserver.org/common/message" "bumbleserver.org/common/peer" "bumbleserver.org/common/session" "bumbleserver.org/common/util" ) }}}

== Example Usage ==

See the examples at http://code.bumbleserver.org/bumble-golang-examples/ for an example of usage.

== Discussion / Support ==

http://bumble-users.bumbleserver.org/ for Bumble User Discussion and Support\ http://bumble-dev.bumbleserver.org/ for Bumble Development Discussion

Clone this wiki locally