mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-24 17:48:30 +02:00
Decouple core Yaak logic from Tauri (#354)
This commit is contained in:
10
crates/yaak-core/src/lib.rs
Normal file
10
crates/yaak-core/src/lib.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
//! 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};
|
||||
Reference in New Issue
Block a user