mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-17 12:46:57 +00:00
11 lines
181 B
Go
Generated
11 lines
181 B
Go
Generated
package mountinfo
|
|
|
|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
|
|
// Do NOT return an error!
|
|
return nil, nil
|
|
}
|
|
|
|
func mounted(_ string) (bool, error) {
|
|
return false, nil
|
|
}
|