1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# OTR3 [](https://travis-ci.org/twstrike/otr3)
Implements version 3 of the OTR standard. Implements feature parity with libotr 4.1.0.
## API Documentation
[](https://godoc.org/github.com/twstrike/otr3)
## Developing
Before doing any work, if you want to separate out your GOPATH from other projects, install direnv
```
$ brew update
$ brew install direnv
$ echo 'eval "$(direnv hook bash)"' >> ~/.bashrc
```
Then, create a symbolic link to the OTR3 repository
```
ln -s /PathToMyGoPackages/.gopkgs/otr3/src/github.com/twstrike/ .
```
Install all dependencies:
``
./deps.sh
``
|