From 7342969a7bf4c9c0b628601953bf09e0312778ec Mon Sep 17 00:00:00 2001 From: weichou Date: Wed, 24 Feb 2021 15:55:40 +0800 Subject: [PATCH] feat: Create Constants for configuration's map key Create Primary and Password for configuration's map key Close #449 Signed-off-by: weichou --- v2/constants.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/v2/constants.go b/v2/constants.go index 3ddb41ce..c3e2dfef 100644 --- a/v2/constants.go +++ b/v2/constants.go @@ -183,3 +183,9 @@ const ( ValueTypeFloat32Array = "Float32Array" ValueTypeFloat64Array = "Float64Array" ) + +// Constants related to configuration file's map key +const ( + Primary = "Primary" + Password = "Password" +)