superstac-engine 0.1.0

Runtime for superstac: orchestrates federated STAC search, health monitoring, and capability introspection.
Documentation
1
2
3
4
5
use parking_lot::Mutex;
use std::sync::Arc;
use superstac_core::storages::factory::StorageBackend;

pub type SharedStorage = Arc<Mutex<Box<dyn StorageBackend + Send + Sync>>>;