File size: 360 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package app
import "time"
// Defaults returns the default app config.
func Defaults() Config {
return Config{
DBMaxOpen: 15,
DBMaxIdle: 5,
ListenAddr: "localhost:8081",
MaxReqBodyBytes: 256 * 1024,
MaxReqHeaderBytes: 4096,
RegionName: "default",
EngineCycleTime: 5 * time.Second,
SMTPMaxRecipients: 1,
}
}
|