can_viewer/lib.rs
1//! CAN Viewer Library
2//!
3//! Core functionality for the CAN Viewer application.
4//! This library can be used by the main binary or extended by pro versions.
5
6pub mod commands;
7pub mod config;
8pub mod decode;
9pub mod dto;
10pub mod live_capture;
11pub mod state;
12
13// Re-export commonly used types
14pub use state::{AppState, InitialFiles};