changed project structure, began web development

This commit is contained in:
2025-12-20 04:34:39 -08:00
parent f5d4da3527
commit 9fd07b24f9
7 changed files with 470 additions and 25 deletions

10
go.mod
View File

@@ -3,11 +3,15 @@ module muzi
go 1.25.4
require (
github.com/go-chi/chi/v5 v5.2.3
github.com/jackc/pgtype v1.14.4
github.com/jackc/pgx/v5 v5.7.6
)
require (
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx v3.6.2+incompatible // indirect
github.com/jackc/pgx/v5 v5.7.6 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/text v0.31.0 // indirect
)