13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
|
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>
|
||
|
}
|