mirror of
https://github.com/fhmq/hmq.git
synced 2026-04-28 04:28:34 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
package broker
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// StartPipeSocketListening We use the open source npipe library
|
|
// to jump over pipe communication in mac
|
|
func (b *Broker) StartPipeSocketListening(pipeName string, usePipe bool) {
|
|
fmt.Println("macos system")
|
|
}
|