Files
open-im-server/cmd/rpc/auth/main.go
T

12 lines
286 B
Go
Raw Normal View History

2021-05-26 19:40:38 +08:00
package main
import (
2023-02-14 19:34:19 +08:00
"Open_IM/internal/rpc/auth"
"Open_IM/internal/startrpc"
2022-05-19 10:44:39 +08:00
"Open_IM/pkg/common/config"
2021-05-26 19:40:38 +08:00
)
func main() {
2023-02-14 20:01:44 +08:00
startrpc.Start(config.Config.RpcPort.OpenImAuthPort, config.Config.RpcRegisterName.OpenImAuthName, config.Config.Prometheus.AuthPrometheusPort, auth.Start)
2021-05-26 19:40:38 +08:00
}