1 2 3 4 5 6 7 8 9
use anyhow::Error; use envhub_types::configuration::Configuration; pub mod rtx; pub trait Extension { fn load(&self, config: &Configuration) -> Result<(), Error>; fn setup(&self) -> Result<(), Error>; }