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.
 
 
 
 
 

29 lines
801 B

package config
import (
waProto "go.mau.fi/whatsmeow/binary/proto"
)
var (
AppVersion = "v4.13.0"
AppPort = "3000"
AppDebug = false
AppOs = "AldinoKemal"
AppPlatform = waProto.DeviceProps_PlatformType(1)
AppBasicAuthCredential string
PathQrCode = "statics/qrcode"
PathSendItems = "statics/senditems"
PathMedia = "statics/media"
PathStorages = "storages"
DBName = "whatsapp.db"
WhatsappAutoReplyMessage string
WhatsappWebhook string
WhatsappLogLevel = "ERROR"
WhatsappSettingMaxFileSize int64 = 50000000 // 50MB
WhatsappSettingMaxVideoSize int64 = 100000000 // 100MB
WhatsappTypeUser = "@s.whatsapp.net"
WhatsappTypeGroup = "@g.us"
)