11 lines
177 B
Go
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) }
|