mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-20 18:57:44 +08:00
9 lines
181 B
Go
9 lines
181 B
Go
// Package npipe provides connhelper for npipe://<address>
|
|
package npipe
|
|
|
|
import "github.com/moby/buildkit/client/connhelper"
|
|
|
|
func init() {
|
|
connhelper.Register("npipe", Helper)
|
|
}
|