1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-17 17:44:30 +02:00
2016-03-14 10:45:38 +00:00

10 lines
151 B
Go

package rpc
import (
"github.com/micro/go-micro/server"
)
func NewServer(opts ...server.Option) server.Server {
return server.NewServer(opts...)
}