github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/pkg/plugins/discovery_windows.go (about) 1 package plugins // import "github.com/Prakhar-Agarwal-byte/moby/pkg/plugins" 2 3 import ( 4 "os" 5 "path/filepath" 6 ) 7 8 // specsPaths is the Windows implementation of [SpecsPaths]. 9 func specsPaths() []string { 10 return []string{filepath.Join(os.Getenv("programdata"), "docker", "plugins")} 11 }