You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/command/network/create.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ type ipamOptions struct {
37
37
driverstring
38
38
subnets []string// TODO(thaJeztah): change to []net.IPNet? This won't accept a bare address (without "/xxx"); we need a flag-type to handle []netip.Prefix directly
39
39
ipRanges []net.IPNet// TODO(thaJeztah): we need a flag-type to handle []netip.Prefix directly
40
-
gateways []string// TODO(thaJeztah): we need a flag-type to handle []netip.Addr directly
40
+
gateways []net.IP// TODO(thaJeztah): we need a flag-type to handle []netip.Addr directly
0 commit comments