Fix: admin summary cannot be cached in redis (#1329)

pull/1380/head
topjohncian 2 years ago committed by GitHub
parent f083d52e17
commit 25d56fad6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,7 @@
package admin
import (
"encoding/gob"
"time"
model "github.com/cloudreve/Cloudreve/v3/models"
@ -10,6 +11,11 @@ import (
"github.com/cloudreve/Cloudreve/v3/pkg/serializer"
)
func init() {
gob.Register(map[string]interface{}{})
gob.Register(map[string]string{})
}
// NoParamService 无需参数的服务
type NoParamService struct {
}

Loading…
Cancel
Save