package files import "io" type FilesAdapter interface { CreateFile(path string, content io.Reader) (string, error) DeleteFile(path string) error }