Added Conn method and dependabot deps

Signed-off-by: kosar <bogdan.kosarevskyi@gmail.com>
This commit is contained in:
kosar
2022-10-28 17:18:30 +03:00
parent caca820b8c
commit 934395fb24
2 changed files with 11 additions and 0 deletions

View File

@@ -92,3 +92,9 @@ updates:
- "🤖 Dependencies"
schedule:
interval: "daily"
- package-ecosystem: "gomod"
directory: "/azureblob/" # Location of package manifests
labels:
- "🤖 Dependencies"
schedule:
interval: "daily"

View File

@@ -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