package model import "time" type Device struct { ID string `json:"id"` Hostname string `json:"hostname"` OS string `json:"os"` IP string `json:"ip"` RegisteredAt time.Time `json:"registered_at"` LastReportAt time.Time `json:"last_report_at"` Status string `json:"status"` }