aboutsummaryrefslogtreecommitdiff
path: root/core/examples
diff options
context:
space:
mode:
Diffstat (limited to 'core/examples')
-rw-r--r--core/examples/start_client_console.rs2
-rw-r--r--core/examples/start_server_console.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/examples/start_client_console.rs b/core/examples/start_client_console.rs
index 3d6653b..d138047 100644
--- a/core/examples/start_client_console.rs
+++ b/core/examples/start_client_console.rs
@@ -1,6 +1,6 @@
use std::net::{IpAddr, Ipv4Addr};
use nogamepads_core::pad_data::pad_player_info::nogamepads_player_info::PlayerInfo;
-use nogamepads_core::pad_io::client::nogamepads_client::PadClient;
+use nogamepads_core::pad_service::client::nogamepads_client::PadClient;
const PASSWORD : &str = "password";
diff --git a/core/examples/start_server_console.rs b/core/examples/start_server_console.rs
index 4b34cdd..4b42849 100644
--- a/core/examples/start_server_console.rs
+++ b/core/examples/start_server_console.rs
@@ -1,5 +1,5 @@
use nogamepads_core::pad_data::game_profile::game_profile::GameProfile;
-use nogamepads_core::pad_io::server::nogamepads_server::PadServer;
+use nogamepads_core::pad_service::server::nogamepads_server::PadServer;
use nogamepads_core::DEFAULT_PORT;
use std::net::{IpAddr, Ipv4Addr};