2
0
mirror of https://github.com/Y2Z/monolith synced 2024-11-10 19:10:29 +00:00
monolith/src/lib.rs

16 lines
169 B
Rust
Raw Normal View History

#[macro_use]
extern crate clap;
2019-12-11 06:12:57 +00:00
#[macro_use]
mod macros;
2020-03-29 07:54:20 +00:00
pub mod css;
2019-08-23 03:17:15 +00:00
pub mod html;
2019-09-29 21:15:49 +00:00
pub mod js;
pub mod opts;
pub mod url;
2019-08-23 03:17:15 +00:00
pub mod utils;
2019-09-29 21:15:49 +00:00
#[cfg(test)]
pub mod tests;