mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
15 lines
226 B
Go
15 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")
|
|
}
|