We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 853cb72 commit 997db81Copy full SHA for 997db81
extensions/accessor/accessor.go
@@ -0,0 +1,12 @@
1
+// Copyright (c) Microsoft Corporation. All rights reserved.
2
+// Licensed under the MIT License. See LICENSE in the project root for license information.
3
+
4
+package accessor
5
6
+import "context"
7
8
+// Accessor accesses data storage.
9
+type Accessor interface {
10
+ Read(context.Context) ([]byte, error)
11
+ Write(context.Context, []byte) error
12
+}
0 commit comments