This repository was archived by the owner on Apr 10, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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
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
5758Start by creating a new git repository:
You can’t perform that action at this time.
0 commit comments