修复#1611提及的反引号导致pgsql搜索不支持的bug (#1612)

This commit is contained in:
奇淼(piexlmax
2024-01-03 11:21:08 +08:00
committed by GitHub
parent 5f7caa0535
commit 0285de50e5
3 changed files with 4 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ type Server struct {
JWT JWT `mapstructure:"jwt" json:"jwt" yaml:"jwt"`
Zap Zap `mapstructure:"zap" json:"zap" yaml:"zap"`
Redis Redis `mapstructure:"redis" json:"redis" yaml:"redis"`
Mongo Mongo `json:"mongo" yaml:"mongo" mapstructure:"mongo"`
Mongo Mongo `mapstructure:"mongo" json:"mongo" yaml:"mongo"`
Email Email `mapstructure:"email" json:"email" yaml:"email"`
System System `mapstructure:"system" json:"system" yaml:"system"`
Captcha Captcha `mapstructure:"captcha" json:"captcha" yaml:"captcha"`