From 9af9140121cac432299c1c34ece985d06e4ce736 Mon Sep 17 00:00:00 2001 From: Asim Date: Mon, 2 Feb 2015 18:53:16 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c4aa3475..3dd6e8ff 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Go Micro - a microservices client/server library -This a minimalistic step into microservices using HTTP/RPC and protobuf. +This a minimalistic step into microservices using HTTP/RPC and protobuf. It's the first implementation of a microservices "spec" called [Micro](https://github.com/asim/micro). An example server can be found in go-micro/template. @@ -57,7 +57,7 @@ Compile proto `protoc -I$GOPATH/src --go_out=$GOPATH/src $GOPATH/src/github.com/ ### Create request handler `go-micro/template/handler/example.go`: -``` +```go package handler import ( @@ -83,7 +83,7 @@ func (e *Example) Call(ctx context.Context, req *example.Request, rsp *example.R ### Init server `go-micro/template/main.go`: -``` +```go package main import (