apcore-cli 0.10.0

Command-line interface for apcore modules
1
2
3
4
5
6
7
8
9
10
11
12
// apcore-cli — Security module re-exports.
// Protocol spec: SEC-01 through SEC-04

pub mod audit;
pub mod auth;
pub mod config_encryptor;
pub mod sandbox;

pub use audit::{AuditLogError, AuditLogger};
pub use auth::{AuthProvider, AuthenticationError};
pub use config_encryptor::{ConfigDecryptionError, ConfigEncryptor};
pub use sandbox::{ModuleExecutionError, ModuleNotFoundError, Sandbox, SchemaValidationError};