feat: revise API, add README.md, LICENSE

This commit is contained in:
2025-08-31 13:31:00 +03:00
parent 82143dffc7
commit 6128f82149
12 changed files with 175 additions and 22 deletions

11
output_nop.go Normal file
View File

@@ -0,0 +1,11 @@
package script
type NopWriter struct{}
func NewNopWriter() *NopWriter {
return new(NopWriter)
}
func (d *NopWriter) Write([]string) error {
return nil
}