package clipper

import (
	
	
	
)

type File struct {
	Dir string
}

func ( *File) () error {
	return os.MkdirAll(.Dir, os.ModePerm)
}

func ( *File) ( string) ([]byte, error) {
	return ioutil.ReadFile(filepath.Join(.Dir, ))
}

func ( *File) ( string,  []byte) error {
	return ioutil.WriteFile(filepath.Join(.Dir, ), , 0666)
}