mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
14 lines
235 B
Go
14 lines
235 B
Go
//go:build darwin
|
|
|
|
package machine
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// setupDockerNetwork is a stub for darwin.
|
|
func (nc *networkController) setupDockerNetwork(ctx context.Context) error {
|
|
return fmt.Errorf("not supported on darwin")
|
|
}
|