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.
Open-IM-Server/cmd/crontask/main.go

17 lines
405 B

2 years ago
package main
2 years ago
import (
2 years ago
"Open_IM/internal/crontask"
2 years ago
"flag"
2 years ago
"fmt"
2 years ago
"time"
2 years ago
)
func main() {
2 years ago
var userID = flag.String("userID", "", "userID to clear msg and reset seq")
var workingGroupID = flag.String("workingGroupID", "", "workingGroupID to clear msg and reset seq")
flag.Parse()
2 years ago
fmt.Println(time.Now(), "start cronTask", *userID, *workingGroupID)
2 years ago
cronTask.StartCronTask(*userID, *workingGroupID)
2 years ago
}