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.
 
 
 
 
 

19 lines
443 B

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