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.
23 lines
482 B
23 lines
482 B
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"github.com/openimsdk/open-im-server/v3/tools/seq/internal"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
var (
|
|
config string
|
|
second int
|
|
)
|
|
flag.StringVar(&config, "c", "", "config directory")
|
|
flag.IntVar(&second, "sec", 3600*24, "delayed deletion of the original seq key after conversion")
|
|
flag.Parse()
|
|
if err := internal.Main(config, time.Duration(second)*time.Second); err != nil {
|
|
fmt.Println("seq task", err)
|
|
}
|
|
fmt.Println("seq task success!")
|
|
}
|