phosphor_app/lib.rs
1//! Shared business logic for Phosphor DAW frontends.
2//!
3//! This crate contains the application state, data models, navigation logic,
4//! undo/redo system, session serialization, and all types needed by both
5//! the TUI and GUI frontends. It has no dependency on any rendering framework.
6
7pub mod actions;
8pub mod session;
9pub mod state;