mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 18:07:45 +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)
|
|
}
|