Skip to content

Commit

Permalink
Merge pull request #16 from satta/go-mod
Browse files Browse the repository at this point in the history
Update code to be more compliant with modern Go
  • Loading branch information
satta committed Jun 29, 2021
2 parents 9240e18 + f51e882 commit 9addef0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,17 @@ columns against the filter without having to use external tools to split and rea

## Installation on Debian-based systems

Debian [command line tool](https://tracker.debian.org/pkg/golang-github-dcso-bloom) (only available in stretch-backports, buster and sid):
Debian [command line tool](https://tracker.debian.org/pkg/golang-github-dcso-bloom):

sudo apt install golang-github-dcso-bloom-cli

## Installation via `go get`:

go get github.com/DCSO/bloom/...

## Installation from source

These need to be run from within the GOPATH source directory for this project. To install the command line tool:
These need to be run from within the `GOPATH` source directory for this project (e.g. `$GOPATH/src/github.com/DCSO/bloom`). To install the command line tool:

make install

Expand Down
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/DCSO/bloom

go 1.15

require gopkg.in/urfave/cli.v1 v1.20.0
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gopkg.in/urfave/cli.v1 v1.20.0 h1:NdAVW6RYxDif9DhDHaAortIu956m2c0v+09AZBPTbE0=
gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0=

0 comments on commit 9addef0

Please sign in to comment.