// Gateway module for app - follows the Train Station Pattern
// All external access must go through this gateway
// Private submodules - not directly accessible from outside
modconfig;modstate;// Public re-exports - the ONLY way to access app functionality
pubuseconfig::{get_config_dir, init_config, load_config, persist_last_model, save_config, Config};pubusestate::AppState;