devicepath/parser.go
2023-08-27 11:31:03 +02:00

9 lines
165 B
Go

package devicepath
func ParseNodeString(string) (DevicePathNode, error) {
return nil, nil
}
func ParsePathString(string) (DevicePath, error) {
return nil, nil
}