rustriff_lib/commands/mod.rs
1//! Tauri command handlers for the Guitar Amplifier application.
2//!
3//! This module contains all the command handlers that are exposed to the frontend
4//! via Tauri's IPC layer. Each submodule groups related commands:
5//!
6//! - [`loopback`] — Audio loopback control
7//! - [`default_controls`] — Gain, master volume, and tone stack equalizer configuration
8//! - [`settings`] — Input/output device selection and enumeration
9
10pub mod analyzer;
11pub mod channels;
12pub mod default_controls;
13pub mod effect_commands;
14pub mod helpers;
15pub mod latency_testing;
16pub mod loopback;
17pub mod settings;