github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/tabulate/writer.go (about)

     1  package tabulate
     2  
     3  type writer interface {
     4  	Write([]string) error
     5  	Flush()
     6  	Error() error
     7  }