1 2 3 4 5 6
pub trait Generate { fn generate( &self, question: &str, ) -> impl std::future::Future<Output = ()> + Send; }