From b46adf188c5ecfff66f6378ed3fd84c7bcab81a5 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Fri, 3 Sep 2021 20:26:12 +0300 Subject: [PATCH] [#770] pkg/morph/container: Add `Morph()` method Signed-off-by: Pavel Karpy --- pkg/morph/client/container/wrapper/wrapper.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/morph/client/container/wrapper/wrapper.go b/pkg/morph/client/container/wrapper/wrapper.go index 4e1f23da..499b62e0 100644 --- a/pkg/morph/client/container/wrapper/wrapper.go +++ b/pkg/morph/client/container/wrapper/wrapper.go @@ -31,6 +31,11 @@ func defaultOpts() *opts { return new(opts) } +// Morph returns raw morph client. +func (w Wrapper) Morph() *client.Client { + return w.client.Morph() +} + // TryNotary returns option to enable // notary invocation tries. func TryNotary() Option {