ssh_crawler/stat/stat.go

9 lines
110 B
Go
Raw Normal View History

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