mirror of
https://github.com/Priler/jarvis.git
synced 2026-06-07 12:54:42 +00:00
Now GUI and the app itself is divided into two different binaries. The app also provides system tray icon. Whereas the GUI can be used to configure the app.
28 lines
375 B
Rust
28 lines
375 B
Rust
// import DB related commands
|
|
mod db;
|
|
pub use db::*;
|
|
|
|
// import RECORDER commands
|
|
mod audio;
|
|
pub use audio::*;
|
|
|
|
// import PORCUPINE commands
|
|
mod listener;
|
|
pub use listener::*;
|
|
|
|
// import SYS commands
|
|
mod sys;
|
|
pub use sys::*;
|
|
|
|
// import VOICE commands
|
|
mod voice;
|
|
pub use voice::*;
|
|
|
|
// import FS commands
|
|
mod fs;
|
|
pub use fs::*;
|
|
|
|
// import ETC commands
|
|
mod etc;
|
|
pub use etc::*;
|