github.com/nextlinux/gosbom@v0.81.1-0.20230627115839-1ff50c281391/gosbom/event/monitor/generic_task.go (about) 1 package monitor 2 3 import ( 4 "io" 5 6 "github.com/wagoodman/go-progress" 7 ) 8 9 type ShellProgress struct { 10 io.Reader 11 *progress.Manual 12 } 13 14 type Title struct { 15 Default string 16 WhileRunning string 17 OnSuccess string 18 } 19 20 type GenericTask struct { 21 Title Title 22 Context string 23 }