From a03a9e9d72b98eb002201492e51dde0b41e513c1 Mon Sep 17 00:00:00 2001 From: Dean Date: Fri, 28 Oct 2022 11:44:13 +0200 Subject: [PATCH] fix init of RMv1 (#36) Co-authored-by: Dean Oren --- client.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client.go b/client.go index 1a8f14d4..1236a6dc 100644 --- a/client.go +++ b/client.go @@ -101,6 +101,12 @@ func (c *Client) init() *Client { MongoDB: mongodb.New(c), Postgres: postgres.New(c), } + + // init archived + c.Archived = ArchivedServices{ + ResourceManagementV1: resourceManagementV1.New(c), + } + return c }