dd5ea7e996
Formatting the code with https://github.com/mvdan/gofumpt Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
17 lines
374 B
Go
17 lines
374 B
Go
package portmapper
|
|
|
|
import "net"
|
|
|
|
func newMockProxyCommand(proto string, hostIP net.IP, hostPort int, containerIP net.IP, containerPort int, userlandProxyPath string) (userlandProxy, error) {
|
|
return &mockProxyCommand{}, nil
|
|
}
|
|
|
|
type mockProxyCommand struct{}
|
|
|
|
func (p *mockProxyCommand) Start() error {
|
|
return nil
|
|
}
|
|
|
|
func (p *mockProxyCommand) Stop() error {
|
|
return nil
|
|
}
|