🎨优化以下

This commit is contained in:
coward
2024-07-11 16:21:08 +08:00
parent 8de68413c1
commit fb97082c0c
4 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
package config
type redis struct {
type cache struct {
Type string `yaml:"type"`
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`

View File

@@ -5,7 +5,7 @@ var Config *config
type config struct {
Http *http `yaml:"http"`
Database *database `yaml:"database"`
Redis *redis `yaml:"redis"`
Cache *cache `yaml:"redis"`
File *file `yaml:"file"`
Mail *mail `yaml:"email"`
Wireguard *wireguard `yaml:"wireguard"`