1 2 3 4 5 6 7 8
package files import "io" type FilesAdapter interface { CreateFile(path string, content io.Reader) (string, error) DeleteFile(path string) error }