2018-11-20 13:30:53 +03:00
|
|
|
// Package rpc provides an rpc server
|
2016-03-14 13:45:38 +03:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/micro/go-micro/server"
|
|
|
|
)
|
|
|
|
|
2018-11-20 13:30:53 +03:00
|
|
|
// NewServer returns a micro server interface
|
2016-03-14 13:45:38 +03:00
|
|
|
func NewServer(opts ...server.Option) server.Server {
|
|
|
|
return server.NewServer(opts...)
|
|
|
|
}
|