Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Msg proto split #38

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
9 changes: 0 additions & 9 deletions Makefile

This file was deleted.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# Doozer Client

**Note:** [doozerd](https://github.com/ha/doozerd) is the server.
**Note:** [doozerd](https://github.com/4ad/doozerd) is the server.
This is the Go client driver for doozer.

## How to use

To install the Go client:

$ go get github.com/ha/doozer
$ go get github.com/4ad/doozer

To install the CLI client:

$ go get github.com/ha/doozer/cmd/doozer
$ go get github.com/4ad/doozer/cmd/doozer

To use:

package main

import (
"github.com/ha/doozer"
"github.com/4ad/doozer"
"os"
)

Expand All @@ -41,13 +41,13 @@ by doing the following:
$ mkdir doozer
$ cd doozer
$ export GOPATH=`pwd`
$ go get github.com/ha/doozer/...
$ go get github.com/4ad/doozer/...

# ...hack...hack..hack...
$ vim src/github.com/ha/doozer/cmd/doozer/help.go
$ vim src/github.com/4ad/doozer/cmd/doozer/help.go

# rebuild ./bin/doozer
$ go install github.com/ha/doozer/...
$ go install github.com/4ad/doozer/...

## License and Authors

Expand Down
25 changes: 0 additions & 25 deletions cmd/doozer/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/doozer/doozer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"flag"
"fmt"
"github.com/ha/doozer"
"github.com/4ad/doozer"
"os"
"reflect"
"sort"
Expand Down
2 changes: 1 addition & 1 deletion cmd/doozer/find.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/ha/doozer"
"github.com/4ad/doozer"
"os"
)

Expand Down
3 changes: 0 additions & 3 deletions cmd/doozer/vers.go

This file was deleted.

3 changes: 3 additions & 0 deletions cmd/doozer/version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package main

const version = `unknown-4ad`
7 changes: 7 additions & 0 deletions msg.ext.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Extensions to msg.pb.go which are not generated by the protobuf
// compiler.
package doozer

func (x response_Err) Error() string {
return x.String()
}
3 changes: 0 additions & 3 deletions msg.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.