comtrya_lib/atoms/command/
mod.rs

1use super::Atom;
2
3mod exec;
4pub use exec::Exec;
5
6pub trait CommandAtom: Atom {}