Files
script/output_nop.go

12 lines
158 B
Go
Raw Permalink Normal View History

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