mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
11 lines
119 B
Go
11 lines
119 B
Go
|
|
package writer
|
||
|
|
|
||
|
|
import "io"
|
||
|
|
|
||
|
|
type CustomWriter interface {
|
||
|
|
io.Writer
|
||
|
|
WriteString(data string)
|
||
|
|
Close()
|
||
|
|
TryFlush()
|
||
|
|
}
|