2019-06-08 19:40:44 +01:00
|
|
|
// Package mucp provides an mucp server
|
|
|
|
package mucp
|
2016-03-14 10:45:38 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/micro/go-micro/server"
|
|
|
|
)
|
|
|
|
|
2018-11-20 10:30:53 +00:00
|
|
|
// NewServer returns a micro server interface
|
2016-03-14 10:45:38 +00:00
|
|
|
func NewServer(opts ...server.Option) server.Server {
|
|
|
|
return server.NewServer(opts...)
|
|
|
|
}
|