image-storage-interfaces/driver/driver.go

8 lines
177 B
Go

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
}