github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+incompatible/pkg/plugins/discovery_windows.go (about)

     1  package plugins // import "github.com/docker/docker/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  }