enwiro-sdk 0.2.1

Shared SDK for enwiro plugin authors: logging, gear schema, plugin protocol types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared SDK for enwiro plugin authors (cookbooks, adapters, bridges).
//!
//! Owns the cross-component contracts and infrastructure that core and
//! plugins both depend on: logging setup, the `gear` schema and on-disk
//! conventions, and any future plugin-protocol types.

pub mod adapter;
pub mod cookbook;
pub mod gear;
pub mod logging;

pub use cookbook::{CookbookMetadata, Recipe};
pub use logging::init_logging;