mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-08 22:33:22 +00:00
13 lines
228 B
Go
13 lines
228 B
Go
package mountinfo
|
|
|
|
import "io"
|
|
|
|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
|
|
// Do NOT return an error!
|
|
return nil, nil
|
|
}
|
|
|
|
func parseInfoFile(_ io.Reader, f FilterFunc) ([]*Info, error) {
|
|
return parseMountTable(f)
|
|
}
|