diff options
author | Matthew Gumport <[email protected]> | 2024-11-22 15:50:50 -0800 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-12-20 13:39:24 -0800 |
commit | 343fc989a925b941d3f2f8e80a472fc129fcaa6c (patch) | |
tree | 347f030b75626f7cc6ce9e5d743ae73168ad3496 /pingora-proxy/src/lib.rs | |
parent | 36d68e813506e12470b8c7cd5a088668e9912a12 (diff) | |
download | pingora-343fc989a925b941d3f2f8e80a472fc129fcaa6c.tar.gz pingora-343fc989a925b941d3f2f8e80a472fc129fcaa6c.zip |
change visibility of create_dummy_session
I'd like to use this in a filter outside of this crate. Need to change
the visibility in order for it to be available.
Diffstat (limited to 'pingora-proxy/src/lib.rs')
-rw-r--r-- | pingora-proxy/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pingora-proxy/src/lib.rs b/pingora-proxy/src/lib.rs index fa639f2..bf4d4ec 100644 --- a/pingora-proxy/src/lib.rs +++ b/pingora-proxy/src/lib.rs @@ -74,7 +74,7 @@ mod proxy_h1; mod proxy_h2; mod proxy_purge; mod proxy_trait; -mod subrequest; +pub mod subrequest; use subrequest::Ctx as SubReqCtx; |