update summary

This commit is contained in:
shoopea 2020-05-31 10:51:00 +02:00
parent 2ee52e849d
commit 502da6c273
2 changed files with 4 additions and 3 deletions

View File

@ -19,7 +19,7 @@ func startCron() *cron.Cron {
c.AddFunc("02 1,3,5,9,11,13,17,19,21 * * *", cronGetHammerTime)
c.AddFunc("12 7,15,23 * * *", cronGetHammerTime)
c.AddFunc("13 3,7,11,15,19,23 * * *", cronTribute)
c.AddFunc("14 7,15,23 * * *", cronCheckVaultLimit)
c.AddFunc("59 6,14,22 * * *", cronCheckVaultLimit)
c.AddFunc("15 7,15,23 * * *", cronSendWarReport)
c.AddFunc("@every 1m", cronSaveClients)
c.Start()

5
def.go
View File

@ -597,8 +597,9 @@ type JobPayloadAlchAll struct {
}
type JobPayloadCheckVaultLimit struct {
Status int64 `json:"status"`
VaultJobID64 int64 `json:"vault_job_id"`
Status int64 `json:"status"`
VaultPreJobID64 int64 `json:"vault_pre_job_id"`
VaultPostJobID64 int64 `json:"vault_post_job_id`
}
type JobPayloadGetVault struct {