clustvirt/view/components/hostinfo.templ

13 lines
199 B
Plaintext
Raw Normal View History

2024-03-16 17:09:58 +00:00
package components
import (
"git.staur.ca/stobbsm/clustvirt/lib/host"
)
// HostInfo is meant to be an HTMX response
templ HostInfo(h *host.Host) {
<body>
@templ.Raw(h.ChartMemory())
</body>
}