Commit c467f841 authored by Kristian's avatar Kristian Committed by Simon Esposito
Browse files

Fix in Documentation (#392)

Fix in Documentation

Update README.md and sample_go_module/README.md
parent f9079cfb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ To build the codebase and generate all sources use these steps.
    protoc -I/usr/local/include -I. -I$GOPATH/src -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway --go_out=plugins=grpc:. ./api/api.proto
    protoc -I/usr/local/include -I. -I$GOPATH/src -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway --grpc-gateway_out=logtostderr=true:. ./api/api.proto
    packr -z
    go build -i
    go build --trimpath
    ```

### License
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ To setup your own project to build modules for the game server you can follow th

    ```bash
    go mod init my-plugin-project
    go get -u "github.com/heroiclabs/nakama-common@v1.0.0"
    go get -u "github.com/heroiclabs/nakama-common@v1.1.1"
    ```
4. Develop your plugin code (you can use the [minimal example](#minimal-example) as a starting point) and save it within your plugin project directory with the `.go` extension.