mirror of
https://github.com/rwinkhart/rcw.git
synced 2026-08-27 20:36:30 -04:00
8 lines
157 B
Go
8 lines
157 B
Go
//go:build windows
|
|
|
|
package daemon
|
|
|
|
import "path/filepath"
|
|
|
|
var socketPath = `\\.\pipe\` + filepath.Base(binPath) + `-rcwd` // store Windows named pipe path
|