rodalies_cli/
lib.rs

1//! # rodalies-cli
2//!
3//! `rodalies-cli` library is the collection of methods required for the `rodalies-cli` CLI binary.
4//! CLI for searching train timetables of the trains of Rodalies de la Generalitat de Catalunya.
5//!
6//! Learn more about `rodalies-cli` code and usage at the main [project page](https://github.com/gerardcl/rodalies-cli).
7
8/// `config` module handles the initialization of `rodalies-cli` CLI.
9pub mod config;
10
11/// `rodalies` module contains the business logic of the whole `rodalies-cli` tool.
12pub mod rodalies;