update package level comment

This commit is contained in:
Asim 2016-11-20 14:59:09 +00:00
parent 25ae5c2e5f
commit ab7f7d6693

View File

@ -1,22 +1,4 @@
/*
Go micro provides a pluggable library to build microservices.
import (
micro "github.com/micro/go-micro"
)
service := micro.NewService()
h := service.Server().NewHandler(&Greeter{})
service.Server().Handle(h)
service.Run()
req := service.Client().NewRequest(service, method, request)
rsp := response{}
err := service.Client().Call(req, rsp)
*/
// Package micro is a pluggable RPC framework for microservices
package micro
import (