Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
360 Bytes
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,
}
}