devicepath/parser.go

10 lines
165 B
Go
Raw Normal View History

2023-08-27 09:31:03 +00:00
package devicepath
func ParseNodeString(string) (DevicePathNode, error) {
return nil, nil
}
func ParsePathString(string) (DevicePath, error) {
return nil, nil
}