hyperclock/components/
mod.rs

1//! Contains the building blocks for creating time-based logic.
2//!
3//! This module provides concrete implementations for watchers (which react to
4//! time passing) and tasks (which represent complex, multi-step automations).
5//! The `HyperclockEngine` manages collections of these components to drive
6//! the application's logic.
7
8pub mod task;
9pub mod watcher;