mirror of
https://github.com/taigrr/wasm-experiments
synced 2025-01-18 04:03:21 -08:00
9 lines
174 B
Go
9 lines
174 B
Go
// +build js,wasm
|
|
|
|
package grpc
|
|
|
|
// Server is a gRPC server to serve RPC requests.
|
|
type Server struct{}
|
|
|
|
func (s *Server) RegisterService(sd *ServiceDesc, ss interface{}) {}
|