From c0d3321bce3e626a98532c08d3d68654b391d9ec Mon Sep 17 00:00:00 2001 From: Ooo0oO0o0oO <907709476@qq.com> Date: Sun, 19 Jan 2020 11:25:24 +0800 Subject: [PATCH] fmt the auth --- common/extension/auth.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common/extension/auth.go b/common/extension/auth.go index f8d1cbeb4..f3dbfbd0b 100644 --- a/common/extension/auth.go +++ b/common/extension/auth.go @@ -4,12 +4,11 @@ import ( "github.com/apache/dubbo-go/filter" ) -var( +var ( authenticators = make(map[string]func() filter.Authenticator) accesskeyStorages = make(map[string]func() filter.AccesskeyStorage) ) - func SetAuthenticator(name string, fcn func() filter.Authenticator) { authenticators[name] = fcn } @@ -30,4 +29,4 @@ func GetAccesskeyStorages(name string) filter.AccesskeyStorage { panic("accesskeyStorages for " + name + " is not existing, make sure you have import the package.") } return accesskeyStorages[name]() -} \ No newline at end of file +} -- GitLab