-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (25 loc) · 767 Bytes
/
Copy pathgo.mod
File metadata and controls
30 lines (25 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module server
go 1.23
toolchain go1.23.1
require (
github.com/go-redis/redis/v8 v8.11.5
github.com/krisek/gompd v1.0.1
github.com/robfig/cron/v3 v3.0.1
github.com/rs/cors v1.11.0
)
require (
github.com/PuerkitoBio/goquery v1.10.0
github.com/huin/goupnp v1.3.0
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/fhs/gompd/v2 v2.3.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/rs/zerolog v1.33.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.25.0 // indirect
)