package driver // Driver is the vfs level driver to operate on filesystem trees (i.e. // copy-on-write filesystems, etc) type Driver interface { Init(rootPath string) error }