diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2024-06-09 19:47:04 +0300 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2024-06-09 19:47:04 +0300 |
| commit | 00fb6a16f1c56435a828eaf7cecaf31410e8045f (patch) | |
| tree | 345b3f3f889b09b91da79f1d76bbe41b0aba47fb /src/main.rs | |
| parent | f3c845d5a8bed780b9a2ce12da213938d4bafe9c (diff) | |
| download | tiny-server-00fb6a16f1c56435a828eaf7cecaf31410e8045f.tar.xz tiny-server-00fb6a16f1c56435a828eaf7cecaf31410e8045f.zip | |
fix: change old http_types import to http
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 1b08605..957d2ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,5 @@ use http_server_starter_rust::handlers::*; -use http_server_starter_rust::http_types::{get, post}; +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; |
