chore: remove optional in redis config (#2979)

This commit is contained in:
Kevin Wan
2023-03-07 14:58:04 +08:00
committed by GitHub
parent dd347e96b0
commit a05fe7bf0a

View File

@@ -25,7 +25,7 @@ type (
// A RedisKeyConf is a redis config with key.
RedisKeyConf struct {
RedisConf
Key string `json:",optional"`
Key string
}
)