From 934395fb24b4dd9263bb6ded7ce3b22c5ee28ea2 Mon Sep 17 00:00:00 2001 From: kosar Date: Fri, 28 Oct 2022 17:18:30 +0300 Subject: [PATCH] Added Conn method and dependabot deps Signed-off-by: kosar --- .github/dependabot.yml | 6 ++++++ azureblob/azureblob.go | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ab46ab7b..319cd09f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -92,3 +92,9 @@ updates: - "🤖 Dependencies" schedule: interval: "daily" + - package-ecosystem: "gomod" + directory: "/azureblob/" # Location of package manifests + labels: + - "🤖 Dependencies" + schedule: + interval: "daily" \ No newline at end of file diff --git a/azureblob/azureblob.go b/azureblob/azureblob.go index 6bbc4bb6..daa780db 100644 --- a/azureblob/azureblob.go +++ b/azureblob/azureblob.go @@ -112,6 +112,11 @@ func (s *Storage) Reset() error { return nil } +// Conn returns storage client +func (s *Storage) Conn() *azblob.Client { + return s.client +} + // Close the storage connextion func (s *Storage) Close() error { return nil