mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
11 lines
202 B
Go
11 lines
202 B
Go
//go:build !linux && !freebsd
|
|
|
|
package libnetwork
|
|
|
|
// no-op on non linux systems
|
|
func (c *Controller) startExternalKeyListener() error {
|
|
return nil
|
|
}
|
|
|
|
func (c *Controller) stopExternalKeyListener() {}
|