init(db): initialize db module

also add go.mod and go.sum
This commit is contained in:
2025-01-17 18:14:39 +03:00
parent 3aef338b1b
commit ec90dfb9dc
3 changed files with 63 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
module github.com/H1K0/Kiraku
go 1.21.1
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.7.2 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/text v0.21.0 // indirect
)