Add Database Connection and Migration
This commit is contained in:
parent
560b25419f
commit
cd3d6ee256
5 changed files with 113 additions and 8 deletions
24
go.mod
24
go.mod
|
@ -2,11 +2,25 @@ module git.lastassault.de/speatzle/morffix
|
|||
|
||||
go 1.21.8
|
||||
|
||||
require github.com/BurntSushi/toml v1.3.2
|
||||
require (
|
||||
github.com/BurntSushi/toml v1.3.2
|
||||
github.com/golang-migrate/migrate/v4 v4.17.1
|
||||
github.com/google/uuid v1.6.0
|
||||
github.com/jackc/pgx/v5 v5.5.5
|
||||
github.com/mackerelio/go-osstat v0.2.4
|
||||
nhooyr.io/websocket v1.8.11
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/google/uuid v1.6.0 // indirect
|
||||
github.com/mackerelio/go-osstat v0.2.4 // indirect
|
||||
golang.org/x/sys v0.6.0 // indirect
|
||||
nhooyr.io/websocket v1.8.11 // indirect
|
||||
github.com/hashicorp/errwrap v1.1.0 // indirect
|
||||
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
||||
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438 // indirect
|
||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
|
||||
github.com/jackc/puddle/v2 v2.2.1 // indirect
|
||||
go.uber.org/atomic v1.11.0 // indirect
|
||||
golang.org/x/crypto v0.22.0 // indirect
|
||||
golang.org/x/sync v0.7.0 // indirect
|
||||
golang.org/x/sys v0.19.0 // indirect
|
||||
golang.org/x/text v0.14.0 // indirect
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue