Private
Public Access
1
0

Add png graph handler
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-12-09 13:53:56 -08:00
parent 69cc4b4e80
commit e824274998
13 changed files with 400 additions and 135 deletions

View File

@@ -35,4 +35,15 @@ WHERE
AND in_pool = 1
AND netspeed > 0
GROUP BY z.name)
AS server_netspeed
AS server_netspeed;
-- name: GetServerByID :one
select * from servers
where
id = ?;
-- name: GetServerByIP :one
select * from servers
where
ip = sqlc.arg(ip);