mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-15 16:42:38 +08:00
15 lines
210 B
Go
15 lines
210 B
Go
package service
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type GrpcServer struct {
|
|
}
|
|
|
|
func (x *GrpcServer) RegisterService(desc *grpc.ServiceDesc, impl any) {
|
|
fmt.Println("RegisterService", desc, impl)
|
|
}
|