maps-service/validation/api/src/lib.rs

16 lines
282 B
Rust
Raw Normal View History

mod context;
2024-12-18 22:20:01 +00:00
pub use context::Cookie;
2024-12-19 00:00:11 +00:00
pub mod types;
#[cfg(feature="internal")]
pub mod internal;
#[cfg(feature="external")]
pub mod external;
2024-12-19 00:00:11 +00:00
//lazy reexports
pub use types::Error;
pub type ReqwestError=reqwest::Error;
pub type CookieError=reqwest::header::InvalidHeaderValue;