This commit is contained in:
2026-06-23 13:53:55 +08:00
parent c336f176e6
commit 331e49ea29
13 changed files with 557 additions and 28 deletions

View File

@@ -16,6 +16,8 @@ type PlecConfig struct {
OriginUrl string `json:"originUrl"`
PreviewBase string `json:"previewBase"`
SkipExistsCheck bool `json:"skipExistsCheck"`
WpUsername string `json:"wpUsername"`
WpPassword string `json:"wpPassword"`
}
type ApplovinConfig struct {
@@ -69,6 +71,8 @@ func defaultConfig() AppConfig {
OriginUrl: "http://167.99.227.249",
PreviewBase: "https://playable.applovindemo.com/phaser/",
SkipExistsCheck: false,
WpUsername: "pm",
WpPassword: "nRLz#LV@y#)q@CW@z8fGEPyI",
},
Applovin: ApplovinConfig{Cookie: "", DelayMs: 5000},
SendToMobile: SendToMobileConfig{Port: 0},