paiagram_core/lib.rs
1//! The core of the Paiagram application. This crate contains the systems used in the runtime and
2//! the types.
3
4pub mod colors;
5pub mod entry;
6pub mod export;
7pub mod graph;
8pub mod i18n;
9pub mod import;
10pub mod interval;
11pub mod plugin;
12pub mod problems;
13pub mod route;
14pub mod settings;
15pub mod station;
16pub mod trip;
17pub mod units;
18pub mod vehicle;
19
20pub use trip::class;