1#![warn(clippy::all, clippy::pedantic, clippy::nursery)] 2 3pub mod account; 4pub mod tasks; 5 6pub use account::Account; 7pub use tasks::History;