-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
36 lines (26 loc) · 1.15 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
module jlortiz.org/jlort2
go 1.22.6
require (
github.com/bwmarrin/discordgo v0.28.1
github.com/mattn/go-isatty v0.0.20
jlortiz.org/jlort2/modules/clickart v0.0.0-00010101000000-000000000000
jlortiz.org/jlort2/modules/commands v0.0.0
jlortiz.org/jlort2/modules/kek v0.0.0-00010101000000-000000000000
jlortiz.org/jlort2/modules/log v0.0.0
jlortiz.org/jlort2/modules/quotes v0.0.0-00010101000000-000000000000
jlortiz.org/jlort2/modules/reminder v0.0.0-00010101000000-000000000000
jlortiz.org/jlort2/modules/zip v0.0.0-00010101000000-000000000000
)
require (
github.com/gorilla/websocket v1.5.3 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/sys v0.24.0 // indirect
)
replace jlortiz.org/jlort2/modules/log => ./modules/log
replace jlortiz.org/jlort2/modules/quotes => ./modules/quotes
replace jlortiz.org/jlort2/modules/zip => ./modules/zip
replace jlortiz.org/jlort2/modules/kek => ./modules/kek
replace jlortiz.org/jlort2/modules/reminder => ./modules/reminder
replace jlortiz.org/jlort2/modules/clickart => ./modules/clickart
replace jlortiz.org/jlort2/modules/commands => ./modules/commands