Skip to main content

asched_core/
lib.rs

1//! Reusable local scheduler core.
2//!
3//! Applications own presentation. This crate owns project registration,
4//! routine persistence, scheduling, execution, daemon IPC, and lifecycle.
5
6// ^ [[asched Architecture]]
7pub mod migration;
8pub mod registry;
9pub mod routine;
10
11pub use registry::{Project, ProjectRegistry, RegistryError, RegistryStore};