From 8b3aa158c9ae6ba58eb8ec58e2d8b82a35c73952 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sat, 21 Dec 2024 22:39:59 -0800 Subject: [PATCH] submissions-api: lazily export other error to avoid importing reqwest elsewhere --- validation/api/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/validation/api/src/lib.rs b/validation/api/src/lib.rs index 975d595..fdd1d22 100644 --- a/validation/api/src/lib.rs +++ b/validation/api/src/lib.rs @@ -12,3 +12,4 @@ pub mod external; //lazy reexports pub use types::Error; pub type ReqwestError=reqwest::Error; +pub type CookieError=reqwest::header::InvalidHeaderValue;