Skip to content

Commit

Permalink
update tutorial README.md (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
yukisea authored and jackzampolin committed Sep 11, 2019
1 parent eb12066 commit da67f75
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit da67f75

Please sign in to comment.