gotest.tools/gotestsum@v1.11.0/internal/filewatcher/term_windows.go (about) 1 package filewatcher 2 3 import "context" 4 5 type terminal struct{} 6 7 func newTerminal() *terminal { 8 return nil 9 } 10 11 func (r *terminal) Monitor(context.Context) {} 12 13 func (r *terminal) Events() <-chan Event { 14 return nil 15 } 16 17 func (r *terminal) Start() {} 18 19 func (r *terminal) Reset() {}