ion-shell 0.1.3

The Ion Shell
1
2
3
4
5
6
7
8
use super::peg::Pipeline;

#[derive(Clone)]
pub struct Function {
    pub name: String,
    pub pipelines: Vec<Pipeline>,
    pub args: Vec<String>
}