add comment

This commit is contained in:
Asim 2015-11-26 00:17:05 +00:00
parent 96955dbd53
commit c4d8701d68

View File

@ -1,5 +1,15 @@
/*
Server represents a server instance in go-micro which handles synchronous
requests via handlers and asynchronous requests via subscribers that
register with a broker.
The server combines the all the packages in go-micro to create a whole unit
used for building applications including discovery, client/server communication
and pub/sub.
*/
package server
import (
"os"
"os/signal"