mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 07:23:51 +01:00
11 lines
311 B
Rust
11 lines
311 B
Rust
//! Core abstractions for Yaak that work without Tauri.
|
|
//!
|
|
//! This crate provides foundational types and traits that allow Yaak's
|
|
//! business logic to run in both Tauri (desktop app) and CLI contexts.
|
|
|
|
mod context;
|
|
mod error;
|
|
|
|
pub use context::{AppContext, WorkspaceContext};
|
|
pub use error::{Error, Result};
|