mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 00:02:41 +10:00
Still needs a massive go-over because there shouldn't be anything referencing tauri in any of the workspaces except the original one. Process manager has been refactored as an example Signed-off-by: quexeky <git@quexeky.dev>
14 lines
350 B
Rust
14 lines
350 B
Rust
#![feature(nonpoison_mutex)]
|
|
#![feature(sync_nonpoison)]
|
|
|
|
use std::sync::{LazyLock, nonpoison::Mutex};
|
|
|
|
use crate::process_manager::ProcessManager;
|
|
|
|
pub static PROCESS_MANAGER: LazyLock<Mutex<ProcessManager>> =
|
|
LazyLock::new(|| Mutex::new(ProcessManager::new()));
|
|
pub mod error;
|
|
pub mod format;
|
|
pub mod process_handlers;
|
|
pub mod process_manager;
|