aboutsummaryrefslogtreecommitdiff
path: root/p2p/src/lib.rs
diff options
context:
space:
mode:
authorhozan23 <hozan23@karyontech.net>2024-05-20 12:52:21 +0200
committerhozan23 <hozan23@karyontech.net>2024-05-20 12:52:21 +0200
commit64c23e7425b277729170356e618b6e1a763962dc (patch)
tree2ad1519cc5a88209c9804f600ca53a4a7cc420dd /p2p/src/lib.rs
parent97629ecb9e4723e5b30b08e757ac3478f9a8746a (diff)
p2p: rexport keypair module from karyon_core
Diffstat (limited to 'p2p/src/lib.rs')
-rw-r--r--p2p/src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/p2p/src/lib.rs b/p2p/src/lib.rs
index fc2c26d..c873980 100644
--- a/p2p/src/lib.rs
+++ b/p2p/src/lib.rs
@@ -7,9 +7,9 @@
//! use easy_parallel::Parallel;
//! use smol::{future, Executor};
//!
-//! use karyon_core::crypto::{KeyPair, KeyPairType};
-//! use karyon_p2p::{Backend, Config, PeerID};
+//! use karyon_p2p::{Backend, Config, PeerID, keypair::{KeyPair, KeyPairType}};
//!
+//! // Generate a new keypair for the peer
//! let key_pair = KeyPair::generate(&KeyPairType::Ed25519);
//!
//! // Create the configuration for the backend.
@@ -23,7 +23,9 @@
//!
//! let task = async {
//! // Run the backend
-//! backend.run().await.unwrap();
+//! backend.run()
+//! .await
+//! .expect("start the backend");
//!
//! // ....
//!