mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
21 lines
488 B
Go
21 lines
488 B
Go
package main
|
|
|
|
import (
|
|
"OpenIM/pkg/common/cmd"
|
|
)
|
|
|
|
func main() {
|
|
msgUtilsCmd := cmd.NewMsgUtilsCmd()
|
|
msgUtilsCmd.AddSuperGroupIDFlag()
|
|
msgUtilsCmd.AddUserIDFlag()
|
|
seqCmd := cmd.NewSeqCmd()
|
|
msgCmd := cmd.NewMsgCmd()
|
|
cmd.GetCmd.AddCommand(seqCmd.Command, msgCmd.Command)
|
|
cmd.FixCmd.AddCommand(seqCmd.Command)
|
|
cmd.GetCmd.AddCommand(msgCmd.Command)
|
|
msgUtilsCmd.AddCommand(cmd.GetCmd, cmd.FixCmd, cmd.ClearCmd)
|
|
if err := msgUtilsCmd.Execute(); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|