22 lines
478 B
Rust
22 lines
478 B
Rust
//! Neuro IPC commands for MEG/EEG analysis
|
|
//!
|
|
//! This module provides Tauri IPC commands for the RustyNeuro neuroimaging
|
|
//! analysis platform, enabling loading of EDF/BDF files, signal processing,
|
|
//! epoching, and visualization data streaming.
|
|
|
|
// Type definitions
|
|
mod types;
|
|
mod error;
|
|
mod service;
|
|
|
|
// Command modules
|
|
mod commands;
|
|
|
|
// Re-export types for public API
|
|
pub use types::*;
|
|
pub use error::*;
|
|
pub use service::*;
|
|
|
|
// Re-export all commands
|
|
pub use commands::*;
|