-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from lightninglabs/bump-litd-0.12.0
Bump litd to v0.12.0-alpha
- Loading branch information
Showing
9 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
syntax = "proto3"; | ||
|
||
package litrpc; | ||
|
||
option go_package = "github.com/lightninglabs/lightning-terminal/litrpc"; | ||
|
||
// The Status server can be used to query the state of various LiT sub-servers. | ||
service Status { | ||
rpc SubServerStatus (SubServerStatusReq) returns (SubServerStatusResp); | ||
} | ||
|
||
message SubServerStatusReq { | ||
} | ||
|
||
message SubServerStatusResp { | ||
// A map of sub-server names to their status. | ||
map<string, SubServerStatus> sub_servers = 1; | ||
} | ||
|
||
message SubServerStatus { | ||
// disabled is true if the sub-server is available in the LiT package but | ||
// has explicitly been disabled. | ||
bool disabled = 1; | ||
|
||
// running is true if the sub-server is currently running. | ||
bool running = 2; | ||
|
||
// error describes an error that might have resulted in the sub-server not | ||
// starting up properly. | ||
string error = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters