Source File
iface.go
Belonging Package
github.com/gookit/goutil/x/stdio
package stdioimport// Flusher interfacetype Flusher interface {Flush() error}// Syncer interfacetype Syncer interface {Sync() error}// FlushWriter is the interface satisfied by logging destinations.type FlushWriter interface {Flusher// Writer the output writerio.Writer}// FlushCloseWriter is the interface satisfied by logging destinations.type FlushCloseWriter interface {Flusher// WriteCloser the output writerio.WriteCloser}// SyncCloseWriter is the interface satisfied by logging destinations.// such as os.Filetype SyncCloseWriter interface {Syncer// WriteCloser the output writerio.WriteCloser}
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |