1pub mod assignment; 2pub mod error; 3 4mod client; 5pub use client::Client; 6 7mod cookie; 8pub use cookie::Cookie; 9 10mod scrape; 11pub use scrape::{course::Course, exam::Exam, report::Report};