mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
15 lines
268 B
Go
15 lines
268 B
Go
//go:build darwin
|
|
|
|
package machine
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/netip"
|
|
)
|
|
|
|
// EnsureUncloudNetwork is a stub for darwin.
|
|
func (d *DockerManager) EnsureUncloudNetwork(ctx context.Context, subnet netip.Prefix) error {
|
|
return fmt.Errorf("not supported on darwin")
|
|
}
|