Documentation ¶ Index ¶ type FileWriter func (fw FileWriter) Close(file *os.File) error func (fw FileWriter) Create(name string) (*os.File, error) func (fw FileWriter) Write(file *os.File, p []byte) error type IFileWriter Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type FileWriter ¶ type FileWriter struct{} func (FileWriter) Close ¶ func (fw FileWriter) Close(file *os.File) error func (FileWriter) Create ¶ func (fw FileWriter) Create(name string) (*os.File, error) func (FileWriter) Write ¶ func (fw FileWriter) Write(file *os.File, p []byte) error type IFileWriter ¶ type IFileWriter interface { Write(file *os.File, p []byte) error Create(name string) (*os.File, error) Close(file *os.File) error } Source Files ¶ View all Source files file_writer.go Click to show internal directories. Click to hide internal directories.