Skip to content

Commit

Permalink
support go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
MelleKoning committed Apr 25, 2021
1 parent 41cb597 commit ea2f37b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,21 @@ Building the client for each platform:
GOOS=windows GOARCH=amd64 go build -o lczero-client.exe
GOOS=darwin GOARCH=amd64 go build -o lczero-client_mac
GOOS=linux GOARCH=amd64 go build -o lczero-client_linux
```
```


# Go module support

Added by executing:

```
go get 'github.com/Tilps/chess@master'
```

gives something like:
```
go: downloading github.com/Tilps/chess v0.0.0-20200409092358-c35715299813
go: github.com/Tilps/chess master => v0.0.0-20200409092358-c35715299813
```

This version number can then be used in the `go.mod` file

0 comments on commit ea2f37b

Please sign in to comment.