Files
og/internal/hoststats/memory.go
T
2026-09-11 06:14:38 +02:00

11 lines
177 B
Go

package hoststats
import "context"
type Memory struct {
TotalBytes int64
UsedBytes int64
}
func ReadMemory(ctx context.Context) (Memory, error) { return readMemory(ctx) }