Skip to content

Commit

Permalink
Use go modules instead of dep
Browse files Browse the repository at this point in the history
  • Loading branch information
takameron committed Feb 25, 2021
1 parent 0262c69 commit dd262f4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 64 deletions.
27 changes: 0 additions & 27 deletions Gopkg.lock

This file was deleted.

30 changes: 0 additions & 30 deletions Gopkg.toml

This file was deleted.

7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
VERSION := $(shell git describe --tags)

install-tools:
go get -u -v github.com/golang/dep/cmd/dep
go get -u -v github.com/mitchellh/gox

install-deps:
dep ensure

update-deps:
dep ensure -update

gox: clean
gox -verbose \
-os="linux darwin windows" \
Expand Down
9 changes: 9 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module slack-dump

go 1.16

require (
github.com/gorilla/websocket v1.2.0 // indirect
github.com/nlopes/slack v0.2.1-0.20180411002824-921a31ba7374
github.com/urfave/cli v1.20.1-0.20180226030253-8e01ec4cd3e2
)
6 changes: 6 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
github.com/gorilla/websocket v1.2.0 h1:VJtLvh6VQym50czpZzx07z/kw9EgAxI3x1ZB8taTMQQ=
github.com/gorilla/websocket v1.2.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
github.com/nlopes/slack v0.2.1-0.20180411002824-921a31ba7374 h1:68jpW9xNpAn0OPkBKSwuOXqa50BrP7CABqwuoTuq3FY=
github.com/nlopes/slack v0.2.1-0.20180411002824-921a31ba7374/go.mod h1:jVI4BBK3lSktibKahxBF74txcK2vyvkza1z/+rRnVAM=
github.com/urfave/cli v1.20.1-0.20180226030253-8e01ec4cd3e2 h1:xAkHCttGHKXIr10OSiFzNt0XOJyHMdng0ylSynT8sMo=
github.com/urfave/cli v1.20.1-0.20180226030253-8e01ec4cd3e2/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=

0 comments on commit dd262f4

Please sign in to comment.