rodalies-cli 1.2.4

CLI for searching train timetables of the trains of Rodalies de la Generalitat de Catalunya
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # rodalies
//!
//! The `rodalies` module contains the modules that manage the HTTP client, the stations search and the timetable results page.

/// `client` is the module responsible to handle the HTTP client conifugration and requests.
pub mod client;
/// `station` is the module responsible to handle the processing, filtering and display of stations.
pub mod station;
/// `timetable` is the module responsible to handle the processing, filtering and display of the desired trains' timetable.
pub mod timetable;

/// `interactive` is the module responsible to handle the whole timetable search interactively.
pub mod interactive;