From 944446a3b72aa10988a06a3a61b48fc4034cd87a Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Tue, 17 Dec 2019 15:10:29 +0100 Subject: [PATCH] use console instead of sjh --- docs/content/getting-started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/getting-started.md b/docs/content/getting-started.md index 98072f39bd..9f9a7c009b 100644 --- a/docs/content/getting-started.md +++ b/docs/content/getting-started.md @@ -21,13 +21,13 @@ TBD Included with the ocis binary is embedded a go-micro runtime that is in charge of starting services as a fork of the master process. This provides complete control over the services. Ocis extensions can be added as part of this runtime. -```sh -> ./bin/ocis micro +```console +./bin/ocis micro ``` This will currently boot: -```sh +```console go.micro go.micro.api go.micro.bot @@ -47,13 +47,13 @@ go.micro.web Further ocis extensions can be added to the runtime via the ocis command like: -```sh +```console ./bin/ocis hello ``` Which whill register: -```sh +```console go.micro.web.hello go.micro.api.hello ```