File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ package litrpc;
5
5
option go_package = "github.com/lightninglabs/lightning-terminal/litrpc" ;
6
6
7
7
service Accounts {
8
- /*
8
+ /* litcli: `accounts create`
9
9
CreateAccount adds an entry to the account database. This entry represents
10
10
an amount of satoshis (account balance) that can be spent using off-chain
11
11
transactions (e.g. paying invoices).
@@ -20,18 +20,18 @@ service Accounts {
20
20
*/
21
21
rpc CreateAccount (CreateAccountRequest ) returns (CreateAccountResponse );
22
22
23
- /*
23
+ /* litcli: `accounts update`
24
24
UpdateAccount updates an existing account in the account database.
25
25
*/
26
26
rpc UpdateAccount (UpdateAccountRequest ) returns (Account );
27
27
28
- /*
28
+ /* litcli: `accounts list`
29
29
ListAccounts returns all accounts that are currently stored in the account
30
30
database.
31
31
*/
32
32
rpc ListAccounts (ListAccountsRequest ) returns (ListAccountsResponse );
33
33
34
- /*
34
+ /* litcli: `accounts remove`
35
35
RemoveAccount removes the given account from the account database.
36
36
*/
37
37
rpc RemoveAccount (RemoveAccountRequest ) returns (RemoveAccountResponse );
You can’t perform that action at this time.
0 commit comments