28 lines
391 B
Go
28 lines
391 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/rest"
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
Auth struct {
|
|
AccessSecret string
|
|
}
|
|
Mysql struct {
|
|
DataSource string
|
|
MaxOpenConn int
|
|
MaxIdleConn int
|
|
}
|
|
Redis struct {
|
|
Host string
|
|
Pass string
|
|
DB int
|
|
}
|
|
Mongo struct {
|
|
Uri string
|
|
Username string
|
|
Password string
|
|
AuthSource string
|
|
Database string
|
|
}
|
|
}
|