Skip to main content

soma_application/
providers.rs

1//! Provider source implementations feeding the `ProviderRegistry`: static
2//! Rust actions, file-backed manifests and resources, and remote catalogs.
3
4/// File-backed provider discovery and manifest loading from `providers/`.
5pub mod filesystem;
6/// Provider catalogs built from a remote inspection report.
7pub mod remote;
8/// Providers serving `providers/resources/` files (static and dynamic).
9pub mod resource_files;
10pub(crate) mod resource_uri;
11/// Provider exposing Soma's built-in Rust actions.
12pub mod static_rust;