1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
pub mod auth; pub mod db; pub mod make; pub mod migrate; pub mod new; pub mod queue; pub mod repl; pub mod schedule; pub mod serve; pub mod test; use std::path::PathBuf; pub fn project_root() -> PathBuf { std::env::current_dir().expect("current dir") }