Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Service async fn-compatible #176

Merged
merged 19 commits into from
Jan 3, 2024
Next Next commit
fix warning
sfackler committed Dec 22, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit e6a52d67650f7e34eebc9d5f200ead4a8296bd3b
2 changes: 1 addition & 1 deletion conjure-runtime/src/service/proxy/mod.rs
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
// limitations under the License.
use crate::config;
pub use crate::service::proxy::connector::{ProxyConnectorLayer, ProxyConnectorService};
pub use crate::service::proxy::request::{ProxyLayer, ProxyService};
pub use crate::service::proxy::request::ProxyLayer;
use base64::display::Base64Display;
use base64::engine::general_purpose::STANDARD;
use conjure_error::Error;