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.
 
 
 
 
 

27 lines
729 B

package config
import (
"fmt"
waProto "go.mau.fi/whatsmeow/binary/proto"
)
type Browser string
var (
AppVersion string = "v3.5.0"
AppPort string = "3000"
AppDebug bool = false
AppOs string = fmt.Sprintf("AldinoKemal")
AppBasicAuthCredential string
AppPlatform waProto.DeviceProps_PlatformType = waProto.DeviceProps_PlatformType(1)
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
)