Application Uptime Check - GO Agent

This commit is contained in:
headlessdev
2025-04-12 16:45:01 +02:00
parent 2c29d3f16f
commit 9a3a36ab7c
4 changed files with 328 additions and 0 deletions

20
agent/go.mod Normal file
View File

@@ -0,0 +1,20 @@
module agent
go 1.24.1
require (
github.com/jackc/pgx/v4 v4.18.3
github.com/joho/godotenv v1.5.1
)
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.14.3 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
golang.org/x/crypto v0.20.0 // indirect
golang.org/x/text v0.14.0 // indirect
)