mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 16:45:15 +03:00
31 lines
514 B
Go
31 lines
514 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.31.1
|
|
|
|
package gen
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Agent struct {
|
|
ID int64
|
|
AgentID string
|
|
AgentName *string
|
|
Architecture string
|
|
System string
|
|
Hostname string
|
|
Version string
|
|
Capabilities *string
|
|
RegisteredAt time.Time
|
|
}
|
|
|
|
type Heartbeat struct {
|
|
ID int64
|
|
AgentID string
|
|
CpuUsage float64
|
|
MemoryUsage float64
|
|
DiskUsage float64
|
|
HeartbeatTimestamp time.Time
|
|
}
|