whatsapp-multi-devicewhatsapp-apiwhatsapprestgolanggowhatsapp-web-multi-devicewhatsapp-api-gorest-apigolang-whatsapp-apigolang-whatsappbot
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
795 B
28 lines
795 B
package config
|
|
|
|
import (
|
|
"fmt"
|
|
waProto "go.mau.fi/whatsmeow/binary/proto"
|
|
)
|
|
|
|
type Browser string
|
|
|
|
var (
|
|
AppVersion string = "v3.6.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
|
|
WhatsappAutoReplyCallbackEndpoint string
|
|
WhatsappSettingMaxFileSize int64 = 30000000 // 10MB
|
|
WhatsappSettingMaxVideoSize int64 = 30000000 // 30MB
|
|
)
|