Skip to content

Commit 02ca208

Browse files
committed
chore: fix formatting
Signed-off-by: Nathan Klick <[email protected]>
1 parent c2502e0 commit 02ca208

File tree

1 file changed

+72
-72
lines changed

1 file changed

+72
-72
lines changed

docs/design/architecture/system/presentation_layer_cli_architecture.md

+72-72
Original file line numberDiff line numberDiff line change
@@ -9,58 +9,58 @@ platform.
99

1010
<div id="table-of-contents"></div>
1111

12-
- [Standards](#standards)
13-
- [Architecture](#architecture)
14-
- [Command Structure Overview](#command-structure-overview)
15-
- [Final Vision](#final-vision)
16-
- [Example Commands](#example-commands)
17-
- [Global Flags](#global-flags)
18-
- [Groups](#groups)
19-
- [Group Changes (Rename, Remove, Replace)](#group-changes-rename-remove-replace)
20-
- [Resources by Group](#resources-by-group)
21-
- [Block](#block)
22-
- [Cluster Ref](#cluster-ref)
23-
- [Consensus](#consensus)
24-
- [Deployment](#deployment)
25-
- [Explorer](#explorer)
26-
- [Keys](#keys)
27-
- [Ledger](#ledger)
28-
- [Mirror](#mirror)
29-
- [Relay](#relay)
30-
- [Quick Start](#quick-start)
31-
- [Operations by Resource](#operations-by-resource)
32-
- [Block](#block-1)
33-
- [Node](#node)
34-
- [Cluster Ref](#cluster-ref-1)
35-
- [Config](#config)
36-
- [Consensus](#consensus-1)
37-
- [Network](#network)
38-
- [Node](#node-1)
39-
- [State](#state)
40-
- [Diagnostic](#diagnostic)
41-
- [Deployment](#deployment-1)
42-
- [Cluster](#cluster)
43-
- [Config](#config-1)
44-
- [State](#state-1)
45-
- [Explorer](#explorer-1)
46-
- [Node](#node-2)
47-
- [Keys](#keys-1)
48-
- [Consensus](#consensus-1)
49-
- [Ledger](#ledger-1)
50-
- [System](#system)
51-
- [Account](#account)
52-
- [Crypto](#crypto)
53-
- [Mirror](#mirror-1)
54-
- [Node](#node-3)
55-
- [Relay](#relay-1)
56-
- [Node](#node-4)
57-
- [Quick Start](#quick-start-1)
58-
- [EVM](#evm)
59-
- [Single](#single)
60-
- [Multi](#multi)
61-
- [Flags by Operation](#flags-by-operation)
62-
- [Block Node](#block-node)
63-
- [List](#list)
12+
* [Standards](#standards)
13+
* [Architecture](#architecture)
14+
* [Command Structure Overview](#command-structure-overview)
15+
* [Final Vision](#final-vision)
16+
* [Example Commands](#example-commands)
17+
* [Global Flags](#global-flags)
18+
* [Groups](#groups)
19+
* [Group Changes (Rename, Remove, Replace)](#group-changes-rename-remove-replace)
20+
* [Resources by Group](#resources-by-group)
21+
* [Block](#block)
22+
* [Cluster Ref](#cluster-ref)
23+
* [Consensus](#consensus)
24+
* [Deployment](#deployment)
25+
* [Explorer](#explorer)
26+
* [Keys](#keys)
27+
* [Ledger](#ledger)
28+
* [Mirror](#mirror)
29+
* [Relay](#relay)
30+
* [Quick Start](#quick-start)
31+
* [Operations by Resource](#operations-by-resource)
32+
* [Block](#block-1)
33+
* [Node](#node)
34+
* [Cluster Ref](#cluster-ref-1)
35+
* [Config](#config)
36+
* [Consensus](#consensus-1)
37+
* [Network](#network)
38+
* [Node](#node-1)
39+
* [State](#state)
40+
* [Diagnostic](#diagnostic)
41+
* [Deployment](#deployment-1)
42+
* [Cluster](#cluster)
43+
* [Config](#config-1)
44+
* [State](#state-1)
45+
* [Explorer](#explorer-1)
46+
* [Node](#node-2)
47+
* [Keys](#keys-1)
48+
* [Consensus](#consensus-1)
49+
* [Ledger](#ledger-1)
50+
* [System](#system)
51+
* [Account](#account)
52+
* [Crypto](#crypto)
53+
* [Mirror](#mirror-1)
54+
* [Node](#node-3)
55+
* [Relay](#relay-1)
56+
* [Node](#node-4)
57+
* [Quick Start](#quick-start-1)
58+
* [EVM](#evm)
59+
* [Single](#single)
60+
* [Multi](#multi)
61+
* [Flags by Operation](#flags-by-operation)
62+
* [Block Node](#block-node)
63+
* [List](#list)
6464

6565
## Standards
6666

@@ -70,10 +70,10 @@ as possible, providing clear and concise feedback to the user at all times.
7070

7171
The CLI should be built using the following tools and libraries:
7272

73-
- [Inquirer.js](https://www.npmjs.com/package/@inquirer/prompts) for interactive prompts
74-
- [Yargs](https://www.npmjs.com/package/yargs) for command line argument parsing
75-
- [Listr2](https://www.npmjs.com/package/listr2) for user-friendly task lists
76-
- [Chalk](https://www.npmjs.com/package/chalk) for colorized output
73+
* [Inquirer.js](https://www.npmjs.com/package/@inquirer/prompts) for interactive prompts
74+
* [Yargs](https://www.npmjs.com/package/yargs) for command line argument parsing
75+
* [Listr2](https://www.npmjs.com/package/listr2) for user-friendly task lists
76+
* [Chalk](https://www.npmjs.com/package/chalk) for colorized output
7777

7878
<p align="right">
7979
:arrow_up_small: <a href="#table-of-contents">Back to top</a>
@@ -128,23 +128,23 @@ flags may be specified at any level of the command hierarchy.
128128

129129
| Group | Resource | Operation(s) |
130130
|-------------|---------------------|---------------------------------------------------------------------------------------------|
131-
| block | node | < list \| info \| logs \| add \| upgrade \| destroy > |
132-
| cluster-ref | config | < list \| info \| connect \| disconnect > |
133-
| consensus | network | < info \| deploy \| freeze \| upgrade \| destroy > |
134-
| consensus | node | < list \| info \| logs \| add \| update \| destroy \| start \| stop \| restart \| refresh > |
135-
| consensus | state | < list \| download \| upload > |
136-
| consensus | diagnostic | < logs \| configs \| all > |
137-
| deployment | config | < list \| info \| create \| delete \| import > |
138-
| deployment | cluster | < list \| info \| attach \| detach > |
139-
| deployment | state | < info \| destroy > |
140-
| explorer | node | < list \| info \| logs \| add \| upgrade \| destroy > |
131+
| block | node | < list | info | logs | add | upgrade | destroy > |
132+
| cluster-ref | config | < list | info | connect | disconnect > |
133+
| consensus | network | < info | deploy | freeze | upgrade | destroy > |
134+
| consensus | node | < list | info | logs | add | update | destroy | start | stop | restart | refresh > |
135+
| consensus | state | < list | download | upload > |
136+
| consensus | diagnostic | < logs | configs | all > |
137+
| deployment | config | < list | info | create | delete | import > |
138+
| deployment | cluster | < list | info | attach | detach > |
139+
| deployment | state | < info | destroy > |
140+
| explorer | node | < list | info | logs | add | upgrade | destroy > |
141141
| keys | consensus | < generate > |
142-
| ledger | system | < init \| accounts-rekey \| staking-setup > |
143-
| ledger | account | < list \| info \| create \| update \| delete \| import > |
144-
| ledger | crypto | < transfer \| balance > |
145-
| mirror | node | < list \| info \| logs \| add \| upgrade \| destroy > |
146-
| relay | node | < list \| info \| logs \| add \| upgrade \| destroy > |
147-
| quick-start | < single \| multi > | < info \| deploy \| destroy > |
142+
| ledger | system | < init | accounts-rekey | staking-setup > |
143+
| ledger | account | < list | info | create | update | delete | import > |
144+
| ledger | crypto | < transfer | balance > |
145+
| mirror | node | < list | info | logs | add | upgrade | destroy > |
146+
| relay | node | < list | info | logs | add | upgrade | destroy > |
147+
| quick-start | < single | multi > | < info | deploy | destroy > |
148148

149149
#### Example Commands
150150

0 commit comments

Comments
 (0)