-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
36 lines (31 loc) · 1.04 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 BloTils
go 1.22
require (
github.com/gorilla/mux v1.8.1
github.com/mattn/go-sqlite3 v1.14.24
)
require (
github.com/DATA-DOG/go-sqlmock v1.5.2 // indirect
github.com/didip/tollbooth v4.0.2+incompatible // indirect
github.com/didip/tollbooth/v8 v8.0.1 // indirect
github.com/go-pkgz/expirable-cache/v3 v3.0.0 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
golang.org/x/time v0.9.0 // indirect
)
require (
github.com/charmbracelet/x/ansi v0.1.4 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/rs/cors v1.11.1
)
require (
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/charmbracelet/lipgloss v0.12.1
github.com/golang-migrate/migrate v3.5.4+incompatible
github.com/gorilla/handlers v1.5.2
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/muesli/termenv v0.15.2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/sys v0.19.0 // indirect
)