Files
script/output_discard.go

14 lines
193 B
Go
Raw Normal View History

2025-08-30 22:00:31 +03:00
package script
import "context"
type NopWriter struct{}
func NewNopWriter() *NopWriter {
return new(NopWriter)
}
func (d *NopWriter) Write(context.Context, []string) error {
return nil
}