From da67f758b5e0b18605863c4bced7096391ed03c2 Mon Sep 17 00:00:00 2001 From: Yukisea <46512387+yukisea@users.noreply.github.com> Date: Thu, 12 Sep 2019 00:57:11 +0900 Subject: [PATCH] update tutorial README.md (#137) --- tutorial/README.md | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/tutorial/README.md b/tutorial/README.md index a430b8f516..1aa3bfee13 100644 --- a/tutorial/README.md +++ b/tutorial/README.md @@ -18,40 +18,41 @@ Through the course of this tutorial you will create the following files that mak ```bash ./nameservice -├── Gopkg.toml ├── Makefile +├── Makefile.ledger ├── app.go ├── cmd │   ├── nscli │   │   └── main.go │   └── nsd │   └── main.go +├── go.mod +├── go.sum └── x └── nameservice + ├── alias.go ├── client │   ├── cli - │   │ ├── query.go - │   │ └── tx.go + │   │   ├── query.go + │   │   └── tx.go │   └── rest - │ ├── query.go - │ ├── tx.go - │   └── rest.go - ├── internal - │ ├── keeper - │ │ ├── keeper.go - │ │ ├── querier.go - │ └── types - │ ├── codec.go - │ ├── errors.go - │ ├── key.go - │ ├── msgs.go - │ ├── querier.go - │ └── types.go - ├── alias.go + │   ├── query.go + │   ├── rest.go + │   └── tx.go ├── genesis.go ├── handler.go + ├── internal + │   ├── keeper + │   │   ├── keeper.go + │   │   └── querier.go + │   └── types + │   ├── codec.go + │   ├── errors.go + │   ├── key.go + │   ├── msgs.go + │   ├── querier.go + │   └── types.go └── module.go - ``` Start by creating a new git repository: