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