submissions-api: lazily export other error to avoid importing reqwest elsewhere
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Quaternions 2024-12-21 22:39:59 -08:00
parent a45b4f2f0c
commit 8b3aa158c9

View File

@ -12,3 +12,4 @@ pub mod external;
//lazy reexports //lazy reexports
pub use types::Error; pub use types::Error;
pub type ReqwestError=reqwest::Error; pub type ReqwestError=reqwest::Error;
pub type CookieError=reqwest::header::InvalidHeaderValue;