mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 19:37:46 +08:00
13 lines
239 B
Go
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
|
|
}
|