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.
20 lines
488 B
20 lines
488 B
package main
|
|
|
|
import (
|
|
"github.com/OpenIMSDK/Open-IM-Server/internal/rpc/auth"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
authCmd := cmd.NewRpcCmd("auth")
|
|
authCmd.AddPortFlag()
|
|
authCmd.AddPrometheusPortFlag()
|
|
if err := authCmd.Exec(); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
if err := authCmd.StartSvr(config.Config.RpcRegisterName.OpenImAuthName, auth.Start); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|