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