Name returns the plugin identifier (e.g., "zfs", "devicemapper", "vfs").
()
| 27 | type FsPlugin interface { |
| 28 | // Name returns the plugin identifier (e.g., "zfs", "devicemapper", "vfs"). |
| 29 | Name() string |
| 30 | |
| 31 | // CanHandle returns true if this plugin handles the given filesystem type. |
| 32 | CanHandle(fsType string) bool |
no outgoing calls