1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-11 17:18:28 +02:00
go-micro/server/rpc/rpc.go

10 lines
151 B
Go
Raw Normal View History

2016-03-14 12:45:38 +02:00
package rpc
import (
"github.com/micro/go-micro/server"
)
func NewServer(opts ...server.Option) server.Server {
return server.NewServer(opts...)
}