Files
ctrld/cmd/cli/os_others.go
2023-08-15 18:22:38 +07:00

14 lines
214 B
Go

//go:build !linux && !darwin && !freebsd
package cli
// TODO(cuonglm): implement.
func allocateIP(ip string) error {
return nil
}
// TODO(cuonglm): implement.
func deAllocateIP(ip string) error {
return nil
}