-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (18 loc) · 689 Bytes
/
go.mod
File metadata and controls
21 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/othalla/plex_exporter
go 1.18
require (
github.com/prometheus/client_golang v1.0.0
github.com/stretchr/testify v1.3.0
github.com/urfave/cli v1.20.0
)
require (
github.com/beorn7/perks v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect
github.com/prometheus/common v0.6.0 // indirect
github.com/prometheus/procfs v0.0.3 // indirect
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e // indirect
)