mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
14 lines
214 B
Go
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
|
|
}
|