ssh_crawler/stat/stat.go

9 lines
108 B
Go
Raw Normal View History

2017-10-20 06:10:30 +00:00
package stat
import "io"
type Stat interface {
Command() string
Parse(r io.Reader) ([]CPUStat, error)
}