phosphor-gui 0.3.17

GUI frontend for the Phosphor DAW (planned)
Documentation
1
2
3
4
5
6
7
8
9
10
//! GUI frontend for Phosphor (egui/eframe).
//!
//! Stub — will be implemented in Phase 6.

use anyhow::Result;
use phosphor_core::EngineConfig;

pub fn run(_config: EngineConfig) -> Result<()> {
    anyhow::bail!("GUI frontend not yet implemented. Use --tui for now.")
}