-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
61 lines (51 loc) · 2.2 KB
/
go.mod
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module github.com/maxsupermanhd/WebChunk
go 1.20
replace github.com/maxsupermanhd/WebChunk/chunkStorage => ./chunkStorage
replace github.com/maxsupermanhd/WebChunk/filesystemChunkStorage => ./filesystemChunkStorage
replace github.com/maxsupermanhd/WebChunk/postgresChunkStorage => ./postgresChunkStorage
replace github.com/maxsupermanhd/WebChunk/viewer => ./viewer
replace github.com/maxsupermanhd/WebChunk/proxy => ./proxy
replace github.com/maxsupermanhd/WebChunk/cmd/auth => ./cmd/auth
require (
github.com/davecgh/go-spew v1.1.1
github.com/dustin/go-humanize v1.0.0
github.com/fsnotify/fsnotify v1.6.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/jackc/pgx/v4 v4.16.1
github.com/joho/godotenv v1.4.0
github.com/maxsupermanhd/go-vmc/v764 v764.0.0-20231128214918-0e72a4850666
github.com/mitchellh/mapstructure v1.5.0
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/shirou/gopsutil v3.21.11+incompatible
)
require (
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/google/uuid v1.3.0
github.com/hashicorp/go-multierror v1.1.1
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.12.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.11.0 // indirect
github.com/jackc/puddle v1.2.1 // indirect
github.com/maxsupermanhd/go-mc-ms-auth v0.0.0-20230820124233-224c486a58d7
github.com/maxsupermanhd/lac v0.0.0-20230313211855-15c94b6cdccf
github.com/pkg/errors v0.9.1 // indirect
github.com/tklauser/go-sysconf v0.3.10 // indirect
github.com/tklauser/numcpus v0.5.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/text v0.4.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)