2018-02-05 21:05:59 +00:00
|
|
|
package plugins // import "github.com/docker/docker/pkg/plugins"
|
2016-08-20 01:01:14 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
2023-07-18 09:47:40 +00:00
|
|
|
// specsPaths is the Windows implementation of [SpecsPaths].
|
|
|
|
func specsPaths() []string {
|
2023-01-10 20:33:49 +00:00
|
|
|
return []string{filepath.Join(os.Getenv("programdata"), "docker", "plugins")}
|
2023-01-02 12:30:17 +00:00
|
|
|
}
|