kubo/cmd/ipfs/sockets/sockets.go
Steven Allen 429c4b537c implement systemd socket activation
License: MIT
Signed-off-by: Steven Allen <steven@stebalien.com>
2019-09-27 16:08:30 -07:00

13 lines
239 B
Go

// +build !linux
package sockets
import (
manet "github.com/multiformats/go-multiaddr-net"
)
// TakeSockets takes the sockets associated with the given name.
func TakeSockets(name string) ([]manet.Listener, error) {
return nil, nil
}