aboutsummaryrefslogtreecommitdiff
path: root/src/prompt/structure.rs
blob: b153cde935a854ab490e44f257972620ada8c1bc (plain) (blame)
1
2
3
4
5
6
7
// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only

pub struct Command {
  pub keyword: String,
  pub args:    Vec<String>,
}