check in this cruft

This commit is contained in:
Asim Aslam
2019-06-08 19:40:44 +01:00
parent 95b8147fa1
commit ed4bce3285
12 changed files with 188 additions and 25 deletions

11
server/mucp/mucp.go Normal file
View File

@@ -0,0 +1,11 @@
// Package mucp provides an mucp server
package mucp
import (
"github.com/micro/go-micro/server"
)
// NewServer returns a micro server interface
func NewServer(opts ...server.Option) server.Server {
return server.NewServer(opts...)
}