From 614cb2a8c3d0db7e7949293960801f5227a1f7fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=8B=E5=90=89=E5=85=86?= <303176530@qq.com> Date: Mon, 25 Oct 2021 22:33:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E7=AB=AF=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E9=A1=B5=E9=9D=A2=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/config/jwt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/jwt.go b/server/config/jwt.go index 04de5db2..4f419853 100644 --- a/server/config/jwt.go +++ b/server/config/jwt.go @@ -4,5 +4,5 @@ type JWT struct { SigningKey string `mapstructure:"signing-key" json:"signingKey" yaml:"signing-key"` // jwt签名 ExpiresTime int64 `mapstructure:"expires-time" json:"expiresTime" yaml:"expires-time"` // 过期时间 BufferTime int64 `mapstructure:"buffer-time" json:"bufferTime" yaml:"buffer-time"` // 缓冲时间 - Issuer string `mapstructure:"issuer" json:"issuer" yaml:"issuer"` + Issuer string `mapstructure:"issuer" json:"issuer" yaml:"issuer"` // 签发者 }