You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
424 B

package config
type Browser string
var (
AppPort string = "3000"
AppDebug bool = false
PathQrCode string = "statics/images/qrcode"
PathSendItems string = "statics/images/senditems"
DBName string = "hydrogenWaCli.db"
WhatsappLogLevel string = "ERROR"
WhatsappAutoReplyMessage string
WhatsappSettingMaxFileSize int64 = 10240000 // 10MB
WhatsappSettingMaxVideoSize int64 = 30000000 // 30MB
)