-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
26 lines (23 loc) · 873 Bytes
/
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
module github.com/syntasso/todo-example-app
go 1.18
require (
github.com/gofiber/fiber/v2 v2.34.0
github.com/gofiber/template v1.6.28
github.com/lib/pq v1.10.6
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cosmtrek/air v1.40.2 // indirect
github.com/creack/pty v1.1.18 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/klauspost/compress v1.15.6 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.37.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
)