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