1 2 3 4 5 6 7 8 9
use oxibrain::{Brain, BrainConfig}; use std::path::Path; pub async fn run(dir: &Path) -> anyhow::Result<()> { let brain = Brain::open(BrainConfig::at(dir)).await?; brain.reproject().await?; println!("reprojection complete"); Ok(()) }