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" )