blob: 44853e1339fe9ebdf8d43f2997bf2c43022117ce (
plain)
1
2
3
4
5
6
7
8
9
|
package files
import "io"
type FilesAdapter interface {
CreateFile(path string, content io.Reader) (string, error)
FileExists(path string) bool
DeleteFile(path string) error
}
|