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.
18 lines
460 B
18 lines
460 B
package main
|
|
|
|
import (
|
|
"Open_IM/internal/task"
|
|
"flag"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
var userID = flag.String("userID", "", "userID to clear msg and reset seq")
|
|
var workingGroupID = flag.String("workingGroupID", "", "workingGroupID to clear msg and reset seq")
|
|
var fixAllSeq = flag.Bool("fixAllSeq", false, "fix seq")
|
|
flag.Parse()
|
|
fmt.Println(time.Now(), "start cronTask", *userID, *workingGroupID)
|
|
task.FixSeq(*userID, *workingGroupID, *fixAllSeq)
|
|
}
|