File tree 1 file changed +20
-19
lines changed
1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -18,40 +18,41 @@ Through the course of this tutorial you will create the following files that mak
18
18
19
19
``` bash
20
20
./nameservice
21
- ├── Gopkg.toml
22
21
├── Makefile
22
+ ├── Makefile.ledger
23
23
├── app.go
24
24
├── cmd
25
25
│ ├── nscli
26
26
│ │ └── main.go
27
27
│ └── nsd
28
28
│ └── main.go
29
+ ├── go.mod
30
+ ├── go.sum
29
31
└── x
30
32
└── nameservice
33
+ ├── alias.go
31
34
├── client
32
35
│ ├── cli
33
- │ │ ├── query.go
34
- │ │ └── tx.go
36
+ │ │ ├── query.go
37
+ │ │ └── tx.go
35
38
│ └── 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
51
42
├── genesis.go
52
43
├── 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
53
55
└── module.go
54
-
55
56
```
56
57
57
58
Start by creating a new git repository:
You can’t perform that action at this time.
0 commit comments