diff options
Diffstat (limited to 'p2p/examples')
-rw-r--r-- | p2p/examples/chat.rs | 2 | ||||
-rw-r--r-- | p2p/examples/monitor.rs | 2 | ||||
-rw-r--r-- | p2p/examples/peer.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/p2p/examples/chat.rs b/p2p/examples/chat.rs index 925c832..99cde7b 100644 --- a/p2p/examples/chat.rs +++ b/p2p/examples/chat.rs @@ -7,7 +7,7 @@ use async_trait::async_trait; use clap::Parser; use smol::{channel, Executor}; -use karyons_core::key_pair::{KeyPair, KeyPairType}; +use karyons_core::crypto::{KeyPair, KeyPairType}; use karyons_net::{Endpoint, Port}; use karyons_p2p::{ diff --git a/p2p/examples/monitor.rs b/p2p/examples/monitor.rs index 530d2d5..0b6571c 100644 --- a/p2p/examples/monitor.rs +++ b/p2p/examples/monitor.rs @@ -5,7 +5,7 @@ use std::sync::Arc; use clap::Parser; use smol::{channel, Executor}; -use karyons_core::key_pair::{KeyPair, KeyPairType}; +use karyons_core::crypto::{KeyPair, KeyPairType}; use karyons_net::{Endpoint, Port}; use karyons_p2p::{Backend, Config}; diff --git a/p2p/examples/peer.rs b/p2p/examples/peer.rs index b595b4a..c0b05c6 100644 --- a/p2p/examples/peer.rs +++ b/p2p/examples/peer.rs @@ -5,7 +5,7 @@ use std::sync::Arc; use clap::Parser; use smol::{channel, Executor}; -use karyons_core::key_pair::{KeyPair, KeyPairType}; +use karyons_core::crypto::{KeyPair, KeyPairType}; use karyons_net::{Endpoint, Port}; use karyons_p2p::{Backend, Config}; |