add basic leader election on top of postgres
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-01-06 23:19:03 +01:00
parent 43685291b6
commit f2ef496b82
10 changed files with 114 additions and 7 deletions

13
go.mod
View File

@@ -2,12 +2,19 @@ module git.front.kjuulh.io/kjuulh/orbis
go 1.23.4
require github.com/spf13/cobra v1.8.1
require (
github.com/jackc/pgx/v5 v5.7.2
github.com/joho/godotenv v1.5.1
github.com/spf13/cobra v1.8.1
gitlab.com/greyxor/slogor v1.6.0
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gitlab.com/greyxor/slogor v1.6.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
)