Skip to main content

photon_backend/backend/
context.rs

1//! Wiring inputs passed to backend `install` functions.
2use crate::registry::TopicRegistry;
3
4/// Shared builder context for storage adapter install fns.
5pub struct BackendContext {
6    /// Inventory-discovered topic descriptors.
7    pub registry: TopicRegistry,
8}