mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-18 17:35:15 +02:00
11 lines
297 B
Rust
11 lines
297 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::WorkspaceContext;
|
|
pub use error::{Error, Result};
|