package stat import "io" type Stat interface { Command() string Parse(r io.Reader) ([]CPUStat, error) }