gopkg.in/hugelgupf/u-root.v4@v4.0.0-20180831060141-1d761fb73d50/xcmds/ectool/eclib.go (about)

     1  package main
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  type (
     8  	command int
     9  	version int
    10  )
    11  
    12  type ec interface {
    13  	Probe(timeout time.Duration) error
    14  	Cleanup(timeout time.Duration) error
    15  	Wait(timeout time.Duration) error
    16  	Command(command command, version version, idata []byte, outsize int, timeout time.Duration) ([]byte, error)
    17  }