dot-agent-core 0.2.0

Core library for dot-agent profile management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod error;
pub mod installer;
pub mod metadata;
pub mod profile;
pub mod rule;
pub mod snapshot;

pub use error::{DotAgentError, Result};
pub use installer::{DiffResult, FileInfo, FileStatus, InstallResult, Installer};
pub use metadata::Metadata;
pub use profile::{Profile, ProfileManager};
pub use rule::{extract_rule, generate_rule, ApplyResult, Rule, RuleExecutor, RuleManager};
pub use snapshot::{ProfileSnapshotManager, Snapshot, SnapshotDiff, SnapshotManager, SnapshotTrigger};