summaryrefslogtreecommitdiffstats
path: root/src/verb/sequence_execution.rs
blob: e64cc861437fb6d2bc18cfdabb74caf3684e92ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use {
    crate::{
        command::Sequence,
    },
};

/// A verb execution definition based on a sequence
/// of commands
#[derive(Debug, Clone)]
pub struct SequenceExecution {

    pub sequence: Sequence,

}