From ff49b4fc714ea84ab3538f787647ad2988184722 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 31 May 2020 11:27:54 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27f6d1e6..27afbd73 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ Go Micro provides the core requirements for distributed systems development incl The **Micro** philosophy is sane defaults with a pluggable architecture. We provide defaults to get you started quickly but everything can be easily swapped out. - - Plugins are available at [github.com/micro/go-plugins](https://github.com/micro/go-plugins). ## Features @@ -58,6 +56,14 @@ To make use of Go Micro ```golang import "github.com/micro/go-micro/v2" + +service := micro.NewService( + micro.Name("helloworld"), +) + +service.Init() + +service.Run() ``` See the [docs](https://dev.micro.mu) for detailed information on the architecture, installation and use of go-micro.