modified radicle-cli/src/commands/node.rs
@@ -34,6 +34,7 @@ Usage
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -73,6 +74,7 @@ pub enum Operation {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -108,6 +110,7 @@ pub enum TrackingMode {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -146,6 +149,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -206,6 +210,7 @@ impl Args for Options {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -233,6 +238,7 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified radicle-cli/src/commands/node/control.rs
@@ -250,3 +250,12 @@ pub fn sessions(node: &Node) -> Result<Option<term::Table<4, term::Label>>, node
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
modified radicle-node/src/control.rs
@@ -105,6 +105,11 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-node/src/runtime/handle.rs
@@ -15,7 +15,7 @@ use crate::runtime::Emitter;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -183,6 +183,12 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-node/src/service.rs
@@ -138,6 +138,8 @@ pub enum Command {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -162,6 +164,7 @@ impl fmt::Debug for Command {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -518,6 +521,9 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle-node/src/test/handle.rs
@@ -4,7 +4,7 @@ use std::sync::{Arc, Mutex};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -28,6 +28,10 @@ impl radicle::node::Handle for Handle {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified radicle/src/node.rs
@@ -339,6 +339,9 @@ pub enum Command {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -653,6 +656,8 @@ pub trait Handle: Clone + Sync + Send {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -810,6 +815,13 @@ impl Handle for Node {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|