omtool.go 89 B

123456
  1. package omtool
  2. type OMTool interface {
  3. Init() (err error)
  4. Run() (done <-chan error)
  5. }