9 lines
108 B
Go
9 lines
108 B
Go
|
package stat
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type Stat interface {
|
||
|
Command() string
|
||
|
Parse(r io.Reader) ([]CPUStat, error)
|
||
|
}
|