diff options
Diffstat (limited to 'src/main.rs')
| -rwxr-xr-x[-rw-r--r--] | src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index 957d2ae..a68dc53 100644..100755 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,10 @@ -use http_server_starter_rust::handlers::*; -use http_server_starter_rust::http::{get, post}; -use http_server_starter_rust::router::Router; -use http_server_starter_rust::server::*; use std::collections::HashMap; use std::io::{self}; use std::net::{IpAddr, Ipv4Addr, SocketAddr}; +use tiny_server::handlers::*; +use tiny_server::http::{get, post}; +use tiny_server::router::Router; +use tiny_server::server::*; fn main() -> io::Result<()> { // Collect the command-line arguments |
