mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
9 lines
164 B
Go
9 lines
164 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type Redis struct {
|
||
|
|
Host string `yaml:"host"`
|
||
|
|
Port int `yaml:"port"`
|
||
|
|
Password string `yaml:"password"`
|
||
|
|
Db int `yaml:"db"`
|
||
|
|
}
|