leviath-package 0.1.1

Agent packaging, sharing, and installation for Leviath
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Leviath Package
//!
//! Agent packaging, sharing, and installation.
//!
//! Provides tools for bundling agents with their blueprints and dependencies
//! and installing them locally.

pub mod bundler;
pub mod installer;
#[cfg(test)]
mod test_support;

pub use bundler::AgentBundler;
pub use installer::{AgentInstaller, InstalledAgent};