newton-core 0.7.1

newton protocol core sdk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Policy persisted immutable data backend abstraction.
//!
//! Provides trait and implementations for storing/retrieving immutable policy
//! artifacts (WASM, Rego) + manifests. S3 for prod, local filesystem for dev.

pub mod backend;
pub mod config;
pub mod resolver;

#[cfg(feature = "persisted-immutable-data-s3")]
pub use backend::S3Backend;
pub use backend::{LocalBackend, UserStorageBackend};
pub use config::{StorageBackendConfig, StorageConfig};
pub use resolver::PersistedImmutableDataResolver;