mirror of
https://github.com/kristoferssolo/captra.git
synced 2025-12-20 11:04:39 +00:00
10 lines
284 B
Rust
10 lines
284 B
Rust
use captra::{CapabilityManifest, load_manifest};
|
|
|
|
/// Load the example manifest bundled with the repo.
|
|
/// # Panics
|
|
#[inline]
|
|
#[must_use]
|
|
pub fn load_example_manifest() -> CapabilityManifest {
|
|
load_manifest("examples/manifest.json").expect("examples/manifest.json must exists")
|
|
}
|