mirror of
https://github.com/containers/podman.git
synced 2025-05-17 06:59:07 +08:00
16 lines
226 B
Go
16 lines
226 B
Go
//go:build !windows
|
|
|
|
package fileserver
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func StartShares(mounts map[string]string) error {
|
|
if len(mounts) == 0 {
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("this platform does not support sharing directories")
|
|
}
|