Browse Source

Update imports

pull/55/head
Mark Drobnak 3 years ago
parent
commit
a2fc98cb5c
No known key found for this signature in database
GPG Key ID: 47A133F3BF9D03D3
  1. 3
      ctru-rs/examples/network-sockets.rs

3
ctru-rs/examples/network-sockets.rs

@ -1,11 +1,10 @@
use std::io;
use ctru::console::Console; use ctru::console::Console;
use ctru::gfx::Gfx; use ctru::gfx::Gfx;
use ctru::services::apt::Apt; use ctru::services::apt::Apt;
use ctru::services::hid::{Hid, KeyPad}; use ctru::services::hid::{Hid, KeyPad};
use ctru::services::soc::Soc; use ctru::services::soc::Soc;
use std::io::{Read, Write}; use std::io::{self, Read, Write};
use std::net::{Shutdown, TcpListener}; use std::net::{Shutdown, TcpListener};
use std::time::Duration; use std::time::Duration;

Loading…
Cancel
Save