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.
17 lines
405 B
17 lines
405 B
package main
|
|
|
|
import (
|
|
"Open_IM/internal/crontask"
|
|
"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")
|
|
flag.Parse()
|
|
fmt.Println(time.Now(), "start cronTask", *userID, *workingGroupID)
|
|
cronTask.StartCronTask(*userID, *workingGroupID)
|
|
}
|