diff options
Diffstat (limited to 'src/prompt/structure.rs')
| -rw-r--r-- | src/prompt/structure.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/prompt/structure.rs b/src/prompt/structure.rs new file mode 100644 index 0000000..b153cde --- /dev/null +++ b/src/prompt/structure.rs @@ -0,0 +1,7 @@ +// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective +// SPDX-License-Identifier: GPL-3.0-only + +pub struct Command { + pub keyword: String, + pub args: Vec<String>, +} |