use crate::{Program, ProgramCollect}; #[cfg(not(feature = "async"))] impl Program where C: ProgramCollect, { pub fn exec_repl(self) {} } #[cfg(feature = "async")] impl Program where C: ProgramCollect {}