forked from bootdotdev/learn-cicd-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
19 lines (16 loc) · 622 Bytes
/
go.mod
File metadata and controls
19 lines (16 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module github.com/bootdotdev/learn-cicd-starter
go 1.22
require (
github.com/go-chi/chi v1.5.4
github.com/go-chi/cors v1.2.1
github.com/google/uuid v1.3.0
github.com/joho/godotenv v1.5.1
github.com/tursodatabase/libsql-client-go v0.0.0-20240220085343-4ae0eb9d0898
)
require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230512164433-5d1fd1a340c9 // indirect
github.com/klauspost/compress v1.15.15 // indirect
github.com/libsql/sqlite-antlr4-parser v0.0.0-20230802215326-5cb5bb604475 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
nhooyr.io/websocket v1.8.7 // indirect
)