mod file_name;
mod named_file;
mod server;
mod temp_file;
pub mod rewrite;
pub use file_name::*;
pub use named_file::*;
pub use server::*;
pub use temp_file::*;
crate::export! {
macro_rules! relative {
($path:expr) => {
if cfg!(windows) {
concat!(env!("CARGO_MANIFEST_DIR"), "\\", $path)
} else {
concat!(env!("CARGO_MANIFEST_DIR"), "/", $path)
}
};
}
}