feat: test coverage more than 85%

This commit is contained in:
2023-03-05 00:05:00 +01:00
parent 89136cae59
commit 0bf7b63286
3 changed files with 106 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
package io
type WriterIface interface {
// WriteFile writes file into `w writer` directory.
// Returns outputPath and error
WriteFile(filename string, data []byte) (string, error)
}