mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
11 lines
187 B
Go
11 lines
187 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !linux && !darwin
|
|
|
|
package freeport
|
|
|
|
func getEphemeralPortRange() (int, int, error) {
|
|
return 0, 0, nil
|
|
}
|