2019-06-08 21:40:44 +03:00
|
|
|
// Package mucp provides an mucp server
|
|
|
|
package mucp
|
2016-03-14 13:45:38 +03:00
|
|
|
|
|
|
|
import (
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/server"
|
2016-03-14 13:45:38 +03:00
|
|
|
)
|
|
|
|
|
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...)
|
|
|
|
}
|