whatsapp-multi-devicewhatsapp-apiwhatsapprestgolanggogolang-whatsappbotwhatsapp-web-multi-devicewhatsapp-api-gorest-apigolang-whatsapp-api
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.
28 lines
714 B
28 lines
714 B
package config
|
|
|
|
import (
|
|
"fmt"
|
|
waProto "go.mau.fi/whatsmeow/binary/proto"
|
|
)
|
|
|
|
var (
|
|
AppVersion = "v4.7.0"
|
|
AppPort = "3000"
|
|
AppDebug = false
|
|
AppOs = fmt.Sprintf("AldinoKemal")
|
|
AppPlatform = waProto.DeviceProps_PlatformType(1)
|
|
AppBasicAuthCredential string
|
|
|
|
PathQrCode = "statics/qrcode"
|
|
PathSendItems = "statics/senditems"
|
|
PathMedia = "statics/media"
|
|
PathStorages = "storages"
|
|
|
|
DBName = "whatsapp.db"
|
|
|
|
WhatsappLogLevel = "ERROR"
|
|
WhatsappAutoReplyMessage string
|
|
WhatsappAutoReplyWebhook string
|
|
WhatsappSettingMaxFileSize int64 = 50000000 // 50MB
|
|
WhatsappSettingMaxVideoSize int64 = 100000000 // 100MB
|
|
)
|