2023-02-15 19:30:05 +01:00
|
|
|
package io
|
|
|
|
|
|
|
|
type WriterIface interface {
|
2023-03-05 00:05:00 +01:00
|
|
|
// WriteFile writes file into `w writer` directory.
|
|
|
|
// Returns outputPath and error
|
2023-02-15 19:30:05 +01:00
|
|
|
WriteFile(filename string, data []byte) (string, error)
|
|
|
|
}
|