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