1#![deny(clippy::let_underscore_must_use)]
2
3pub mod i18n;
6
7rust_i18n::i18n!(
10 "locales-empty",
11 fallback = "en",
12 backend = i18n::runtime_backend::RuntimeBackend::new()
13);
14
15pub mod config;
17pub mod partial_config;
18pub mod types;
19
20#[cfg(feature = "runtime")]
22pub mod config_io;
23#[cfg(feature = "runtime")]
24pub mod init_script;
25#[cfg(feature = "runtime")]
26pub mod state;
27#[cfg(feature = "runtime")]
28pub mod workspace;
29
30pub mod model;
33pub mod primitives;
34
35#[cfg(feature = "runtime")]
37pub mod app;
38#[cfg(feature = "runtime")]
39pub mod input;
40#[cfg(feature = "runtime")]
41pub mod services;
42
43#[cfg(feature = "runtime")]
45pub mod client;
46#[cfg(feature = "runtime")]
47pub mod server;
48
49#[cfg(any(feature = "runtime", feature = "wasm", feature = "dev-bins"))]
52pub mod view;
53
54#[cfg(feature = "gui")]
56pub mod gui;
57
58#[cfg(feature = "wasm")]
60pub mod wasm;