move Docker manager to docker package

This commit is contained in:
Pavel Sviderski
2024-11-17 19:41:47 +10:00
parent 9c9e143dc8
commit 24371eb401
5 changed files with 29 additions and 28 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build darwin
package docker
import (
"context"
"fmt"
"net/netip"
)
// EnsureUncloudNetwork is a stub for darwin.
func (d *Manager) EnsureUncloudNetwork(ctx context.Context, subnet netip.Prefix) error {
return fmt.Errorf("not supported on darwin")
}