get_full_year/
lib.rs

1pub mod dto;
2pub mod errors;
3pub mod services;
4
5pub use dto::YearResponseDTO;
6pub use errors::YearFetchingError;
7pub use services::get_full_year;