gopkg.in/hugelgupf/u-root.v2@v2.0.0-20180831055005-3f8fdb0ce09d/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 }