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.
14 lines
294 B
14 lines
294 B
package main
|
|
|
|
import (
|
|
"Open_IM/internal/rpc/user"
|
|
"Open_IM/internal/startrpc"
|
|
"Open_IM/pkg/common/config"
|
|
)
|
|
|
|
func main() {
|
|
|
|
startrpc.Start(config.Config.RpcPort.OpenImUserPort[0], config.Config.RpcRegisterName.OpenImUserName, config.Config.Prometheus.UserPrometheusPort[0], user.Start)
|
|
|
|
}
|