Skip to content

Commit bfcccab

Browse files
committed
Updated to use go mod dependency management
1 parent 2312eed commit bfcccab

File tree

290 files changed

+27
-155075
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+27
-155075
lines changed

Gopkg.lock

-33
This file was deleted.

Gopkg.toml

-38
This file was deleted.

go.mod

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module github.com/dominicbreuker/pspy
2+
3+
go 1.18
4+
5+
require (
6+
github.com/spf13/cobra v1.4.0
7+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
8+
)
9+
10+
require (
11+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
12+
github.com/spf13/pflag v1.0.5 // indirect
13+
)

go.sum

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
2+
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
3+
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
4+
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
5+
github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q=
6+
github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g=
7+
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
8+
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
9+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a h1:dGzPydgVsqGcTRVwiLJ1jVbufYwmzD3LfVPLKsKg+0k=
10+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
11+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
12+
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=

internal/fswatcher/inotify/inotify.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build linux
2+
13
package inotify
24

35
import (

vendor/github.com/inconshreveable/mousetrap/LICENSE

-13
This file was deleted.

vendor/github.com/inconshreveable/mousetrap/README.md

-23
This file was deleted.

vendor/github.com/inconshreveable/mousetrap/trap_others.go

-15
This file was deleted.

vendor/github.com/inconshreveable/mousetrap/trap_windows.go

-98
This file was deleted.

vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go

-46
This file was deleted.

vendor/github.com/spf13/cobra/.gitignore

-36
This file was deleted.

vendor/github.com/spf13/cobra/.mailmap

-3
This file was deleted.

vendor/github.com/spf13/cobra/.travis.yml

-21
This file was deleted.

0 commit comments

Comments
 (0)