hypershell_components/dsl/
exec.rs

1use core::marker::PhantomData;
2
3pub struct SimpleExec<Path, Args>(pub PhantomData<(Path, Args)>);
4
5pub struct StreamingExec<Path, Args>(pub PhantomData<(Path, Args)>);