diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-24 21:37:17 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-24 21:37:17 -0700 |
commit | 3aaa3d1e80284b4c4dd39cd83b73f586e2831d5d (patch) | |
tree | 0bd3268c85f66ca1118e57927215bdfbe5f4be3b /tests | |
parent | ae6aafc3d936e7e5211cf117ee581298ed74c8de (diff) | |
download | es-public-proxy-3aaa3d1e80284b4c4dd39cd83b73f586e2831d5d.tar.gz es-public-proxy-3aaa3d1e80284b4c4dd39cd83b73f586e2831d5d.zip |
move request body parsing to module/file
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parse_es_requests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parse_es_requests.rs b/tests/parse_es_requests.rs index a4950c0..c34dfad 100644 --- a/tests/parse_es_requests.rs +++ b/tests/parse_es_requests.rs @@ -1,7 +1,7 @@ use std::fs; use std::ffi::OsStr; -use es_public_proxy::{ScrollBody, SearchBody}; +use es_public_proxy::parse::{ScrollBody, SearchBody}; mod common; |