summaryrefslogtreecommitdiffstats
path: root/common/types/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/types/types.go')
-rw-r--r--common/types/types.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/types/types.go b/common/types/types.go
index 291bf6cf3..a5805d07a 100644
--- a/common/types/types.go
+++ b/common/types/types.go
@@ -20,6 +20,12 @@ import (
"github.com/spf13/cast"
)
+// KeyValueStr is a string tuple.
+type KeyValueStr struct {
+ Key string
+ Value string
+}
+
// KeyValues holds an key and a slice of values.
type KeyValues struct {
Key interface{}