1use async_trait::async_trait; 2use eyre::Result; 3 4pub mod headless; 5pub mod preferences; 6pub mod serve; 7pub mod session; 8 9#[async_trait] 10pub trait Command { 11 async fn execute(&self) -> Result<()>; 12}