ssh_crawler/stat/stat.go
insanity 1552f4eaba ing
2017-10-23 14:31:04 +09:00

9 lines
110 B
Go

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