Skip to content

Commit da67f75

Browse files
yukiseajackzampolin
authored andcommitted
update tutorial README.md (#137)
1 parent eb12066 commit da67f75

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

Diff for: tutorial/README.md

+20-19
Original file line numberDiff line numberDiff line change
@@ -18,40 +18,41 @@ Through the course of this tutorial you will create the following files that mak
1818

1919
```bash
2020
./nameservice
21-
├── Gopkg.toml
2221
├── Makefile
22+
├── Makefile.ledger
2323
├── app.go
2424
├── cmd
2525
│   ├── nscli
2626
│   │   └── main.go
2727
│   └── nsd
2828
│   └── main.go
29+
├── go.mod
30+
├── go.sum
2931
└── x
3032
└── nameservice
33+
├── alias.go
3134
├── client
3235
│   ├── cli
33-
│   │ ├── query.go
34-
│   │ └── tx.go
36+
│   │   ├── query.go
37+
│   │   └── tx.go
3538
│   └── rest
36-
│ ├── query.go
37-
│ ├── tx.go
38-
│   └── rest.go
39-
├── internal
40-
│ ├── keeper
41-
│ │ ├── keeper.go
42-
│ │ ├── querier.go
43-
│ └── types
44-
│ ├── codec.go
45-
│ ├── errors.go
46-
│ ├── key.go
47-
│ ├── msgs.go
48-
│ ├── querier.go
49-
│ └── types.go
50-
├── alias.go
39+
│   ├── query.go
40+
│   ├── rest.go
41+
│   └── tx.go
5142
├── genesis.go
5243
├── handler.go
44+
├── internal
45+
│   ├── keeper
46+
│   │   ├── keeper.go
47+
│   │   └── querier.go
48+
│   └── types
49+
│   ├── codec.go
50+
│   ├── errors.go
51+
│   ├── key.go
52+
│   ├── msgs.go
53+
│   ├── querier.go
54+
│   └── types.go
5355
└── module.go
54-
5556
```
5657

5758
Start by creating a new git repository:

0 commit comments

Comments
 (0)