diff --git a/app/proxyman/outbound/handler.go b/app/proxyman/outbound/handler.go index c792994eb..9ef25c160 100644 --- a/app/proxyman/outbound/handler.go +++ b/app/proxyman/outbound/handler.go @@ -127,3 +127,11 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (internet.Conn func (h *Handler) GetOutbound() proxy.Outbound { return h.proxy } + +func (h *Handler) Start() error { + return nil +} + +func (h *Handler) Close() error { + return nil +}